0

我是安卓新手。我正在研究广播接收器。我想创建一个接收器监听拨出电话。我所期望的是,当拨打电话时,会写 logcat "It is Ok" 。但它在日志上显示消息为“来自 nativegetenabledtags 的意外值”。

以下是我的清单文件。

<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);
              }
            }  
            }

}

请给我一些解决方案。

4

2 回答 2

0

我不确定这是否是确切原因,但是对于您的班级名称,您需要在前面加一个点 (.)。如下所示。

<receiver android:name=".MyPhoneReceiver" >

我不确定这是否是您的确切问题,但没有 . 如果这不是原因,将导致您出现其他问题

于 2013-06-10T09:44:09.120 回答
0

检查这个答案:来自 nativeGetEnabledTags 的意外值:0

将此过滤器添加到 LogCat:^(?!. (nativeGetEnabledTags))。$

这是工具的最新版本中引入的一个错误......谷歌正在努力修复下一个版本

于 2013-06-10T09:53:05.153 回答