我試圖實現一個接收器,它將在我的應用程序中啓動。爲此我創建了一個MyReceiver類,然後將其添加到我的清單中。我也加了許可。但它沒有工作,也沒有顯示在應用程序的信息。RECEIVE_BOOT_COMPLETED在棒棒糖設備中不工作
這裏是我認爲這將是一個解決方案
<uses-permission android:name="ANDROID.PERMISSION.READ_EXTERNAL_STORAGE" />
Android是區分大小寫的最多的地方我的清單文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.inapp.sampleboot" >
<uses-permission android:name="ANDROID.PERMISSION.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".MyReceiver"
>
<intent-filter>
<action android:name="ANDROID.INTENT.ACTION.BOOT_COMPLETED"/>
<action android:name="android.intent.action.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE" />
</intent-filter>
</receiver>
</application>
</manifest>
我reciever類
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
}
}
粘貼你的接收器類 – droidev