如何从 android 台设备发送 RECEIVE_EMERGENCY_BROADCAST 条消息
How to RECEIVE_EMERGENCY_BROADCAST messages from android devices
我想在我的应用程序中接收紧急小区广播消息。为此,我需要 RECEIVE_EMERGENCY_BROADCAST
的许可。而且我必须导入一些 android OS 类 com.android.internal.telephony.ITelephony
。但是我无法在我的应用程序中访问那些 类 。请帮我解决这个问题,或者谁能告诉我如何访问 android 隐藏的 OS 函数?
在清单中使用以下过滤器声明广播接收器class
<intent-filter android:priority="999<action android:name="android.provider.Telephony.SMS_CB_RECEIVED" /></intent-filter> <intent-filter><action android:name="android.provider.Telephony.CB_RECEIVED" />
在广播接收器中class我们将通过以下覆盖方法获得意图。
public void onReceive(Context paramContext, Intent paramIntent) {
}
提取 "paramIntent" 以获取小区广播消息。
我想在我的应用程序中接收紧急小区广播消息。为此,我需要 RECEIVE_EMERGENCY_BROADCAST
的许可。而且我必须导入一些 android OS 类 com.android.internal.telephony.ITelephony
。但是我无法在我的应用程序中访问那些 类 。请帮我解决这个问题,或者谁能告诉我如何访问 android 隐藏的 OS 函数?
在清单中使用以下过滤器声明广播接收器class
<intent-filter android:priority="999<action android:name="android.provider.Telephony.SMS_CB_RECEIVED" /></intent-filter> <intent-filter><action android:name="android.provider.Telephony.CB_RECEIVED" />
在广播接收器中class我们将通过以下覆盖方法获得意图。
public void onReceive(Context paramContext, Intent paramIntent) {
}
提取 "paramIntent" 以获取小区广播消息。