gpt4 book ai didi

android - [Android]BroadcastReceiver(Action_headset_plug) 未触发

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:34:03 28 4
gpt4 key购买 nike

我在 AndroidManifest.xml 中声明了一个 BroadcsastReceiver(Action_headset_plug) 并定义了一个 BroadcsastReceiver 实现 BroadcsastReceiver 。我在设备上运行 apk,但接收器没有触发。但是,当我在 Activity 中使用 registerReceiver() 时它可以正常工作。我是否遗漏了 AndroidManifest.xml 中的某些内容?

这是AndroidManifest.xml

  <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="irdc.Earphone_test"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="9" />
<uses-permission android:name="android.permission.ACTION_HEADSET_PLUG"></uses-permission>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<receiver android:enabled="true" android:name="BroadcastHandler">
<intent-filter>
<action android:name="android.intent.ACTION_HEADSET_PLUG"></action>
</intent-filter>
</receiver>
<activity android:name=".Earphone_testActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>
</manifest>

这是接收者代码

public class BroadcastHandler extends BroadcastReceiver { 
@Override
public void onReceive(Context context, Intent intent) {

if(intent.getAction().equals(Intent.ACTION_HEADSET_PLUG)){
String mes;
int state = intent.getIntExtra("state", 4);
if(state == 0){
mes ="out";
}else if(state == 1){
mes ="in";
}else {
mes ="others";
}
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Headset broadcast");
builder.setMessage(mes);
builder.setPositiveButton("Okey-dokey", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
builder.create().show();

}

}
}

最佳答案

为了监听耳机变化,广播接收器不能在 list 中声明,必须动态注册。并非所有接收器在 list 中声明时都有效,这是一个您需要以编程方式注册的示例。

例如,您可以在 Activity 的 onResume 方法或服务的 onCreate 方法中调用它:

headsetReceiver = new BroadcastHandler();
registerReceiver(headsetReceiver, new IntentFilter(Intent.ACTION_HEADSET_PLUG));

然后在 Activity 的 onPause 方法或 Service 的 onDestroy 方法中,您需要注销接收器:

unregisterReceiver(headsetReceiver);

关于android - [Android]BroadcastReceiver(Action_headset_plug) 未触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7481083/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com