android - 手机重启后接收器不工作

标签 android broadcastreceiver restart

我正在使用广播接收器在手机开机时自动启动我的应用程序。但这对我来说不起作用。我附上了程序的详细信息。请有人帮助我,我落后在哪里。提前致谢

this is manifest file

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.vishal.readsimnumber">

    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver
            android:name=".reciever.BootStartReciever">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>

        <service
            android:name=".FetchSimNumber"
            android:enabled="true"
            android:exported="true"></service>
    </application>

</manifest>

this is my broadcast reciever

    public class BootStartReciever extends BroadcastReceiver {
    public BootStartReciever() {
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
            Intent pushIntent = new Intent(context, FetchSimNumber.class);
            context.startService(pushIntent);

        }
    }
}


this is my service class

public class FetchSimNumber extends Service {
    public FetchSimNumber() {

            Intent intent = new Intent(FetchSimNumber.this,MainActivity.class);
        startActivity(intent);


    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        throw new UnsupportedOperationException("Not yet implemented");
    }
}

and this is my main activity

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TelephonyManager telemamanger = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
        String getSimSerialNumber = telemamanger.getSimSerialNumber();
        String getSimNumber = telemamanger.getLine1Number();
        ((TextView) findViewById(R.id.tv1)).setText(getSimSerialNumber);
        ((TextView) findViewById(R.id.tv2)).setText(getSimNumber);


    }
}

最佳答案

public class BootStartReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {
            /* Setting the service  here */
         Intent i = new Intent(context, Yourservice.class)
         context.startService(i);
}

在你的 list 文件中:

   <receiver android:name=".BootReceiver"
       android:enable="true">
                        <intent-filter>
                                <action android:name="android.intent.action.BOOT_COMPLETED" />
                                <category android:name="android.intent.category.HOME" />
                        </intent-filter>
   </receiver>

有时 category.HOME 不起作用,所以您也可以使用 category.DEFAULT.. 我不知道这背后的原因,但它工作正常..

关于android - 手机重启后接收器不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38177985/

相关文章:

java - LinearLayout嵌套到RelativeLayout时设置LinearLayout的LayoutParams

android - 以度数获取方向

android - 继承可绘制选择器

android - 如何将 Service 与 BroadcastReceiver 结合使用?

android - 如何捕捉 ACTION_MEDIA_BUTTON 的按住(长按)

android - BroadcastReceiver 收不到广播事件消息

android - 将jar导入Android Studio项目

java - 中断后在 Quartz Scheduler 中启动单个作业

emacs - 无需重新启动 Emacs 即可重新加载配置

python - 发生错误时自动重启程序