我是android新手。我正在研究广播接收器。我想创建一个接听者拨打电话。我所期待的是,当外出通话时写入logcat“它是好的”。 但它在日志中显示消息为“来自nativegetenabledtags的意外值”。
以下是我的manifestFile。
<uses-permission android:name="android.permission.READ_PHONE_STATE" >
</uses-permission>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="de.vogella.android.receiver.phone.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="MyPhoneReceiver" >
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" >
</action>
</intent-filter>
</receiver>
</application>
以下是接收器类
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.TelephonyManager;
import android.util.Log;
public class MyPhoneReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Bundle extras = intent.getExtras();
if (extras != null) {
String state = extras.getString(TelephonyManager.EXTRA_STATE);
Log.w("MY_DEBUG_TAG", state);
if (state.equals(TelephonyManager.EXTRA_STATE_RINGING)) {
String phoneNumber = extras
.getString(TelephonyManager.EXTRA_INCOMING_NUMBER);
Log.w("MY_DEBUG_TAG", phoneNumber);
}
}
}
}
请给我一些解决方案。
答案 0 :(得分:0)
我不确定这是不是确切的原因,但是对于你的班级名称,你需要在前面放一个点(。)。如下所示。
<receiver android:name=".MyPhoneReceiver" >
我不确定这是不是你的确切问题但没有。如果不是这个原因,会给你带来其他问题
答案 1 :(得分:0)
检查此答案:Unexpected value from nativeGetEnabledTags: 0
将此过滤器添加到LogCat:^(?!。(nativeGetEnabledTags))。 $
这是最新修订的工具中引入的错误... Google正在修改下一个版本