我编写了一个应用程序,每当设备断开/连接电源时,该应用程序就会显示一个吐司。我是通过this教程(第1节)逐步编写的。
该应用程序什么也不做。我在onReceive
的开头放置了一个断点,以查看应用程序是否转到那里,并发现在我断开/连接设备后,该应用程序没有到达onReceive
。
应用程序有什么问题?
我根本没有改变MainActivity
。
这是我写的课:
public class CustomReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String intentAction = intent.getAction();
String toastMessege = null;
switch (intentAction) {
case Intent.ACTION_POWER_CONNECTED:
toastMessege = "Power connected!";
break;
case Intent.ACTION_POWER_DISCONNECTED:
toastMessege = "Power disconnected!";
break;
}
Toast.makeText(context,toastMessege,Toast.LENGTH_SHORT).show();
}
}
这是AndroidManifest.xml
:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.example.powerreceiver">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<receiver
android:name=".CustomReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/>
</intent-filter>
</receiver>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
您需要在运行时注册这些文件才能使它们工作