我试图在我的应用程序中实现一个可以在启动时工作的接收器。为此我创建了一个MyReceiver类,然后在我的清单中添加了它。我也加了许可。但它不起作用,也没有在应用信息中显示。
这是我的清单文件
<?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>
我的接收班
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 :(得分:0)
我认为这将是一个解决方案
<uses-permission android:name="ANDROID.PERMISSION.READ_EXTERNAL_STORAGE" />
Android在大多数地方都区分大小写。请将其更改为:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
答案 1 :(得分: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
答案 2 :(得分:0)
安装后至少启动一次应用程序,然后重启设备。希望它能起作用