0

我試圖實現一個接收器,它將在我的應用程序中啓動。爲此我創建了一個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) { 

    } 
} 
+0

粘貼你的接收器類 – droidev

回答

0

。請將其更改爲:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 
0

接收方意圖過濾器中有兩個操作。那就是問題所在。相反,有兩個意圖過濾器的接收器。

像這樣的東西可能:

<intent-filter> 
       <action android:name="android.intent.action.BOOT_COMPLETED"/> 
</intent-filter> 
<intent-filter> 
       <action android:name="android.intent.action.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE" /> 
</intent-filter> 

你真的需要第二個動作?

通過這個,如果你面對的這個主題的其他問題:https://stackoverflow.com/a/26026471/4747587

0

啓動應用程序至少一次安裝後,再重新啓動設備。希望它能工作

相關問題