1

这是我在 Eclipse 上为 NFC 运行 TagViewer.java 时在我的 logcat 上显示的错误。我正在运行一个 NFC 程序,基本上它运行,但是在某个时间段程序会自行关闭。

08-29 14:06:33.677: E/ViewTag(22056): Unknown intent Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.example.android.nfc/.TagViewer }

这是来自我的 Android 清单。我猜测错误来自这里,因为错误android.intent.action.MAIN等。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.android.nfc"
 android:versionCode="1"
 android:versionName="1.0" >

 <uses-permission android:name="android.permission.NFC" />
 <uses-permission android:name="android.permission.CALL_PHONE"/>
 <uses-feature android:name="android.hardware.nfc" android:required="true"/>

 <uses-sdk
    android:minSdkVersion="9"
    android:targetSdkVersion="16" />

 <application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".TagViewer"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />                

            <intent-filter> 
              <action android:name="android.nfc.action.TAG_DISCOVERED"/>    
              <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>

        </intent-filter>

    </activity>
 </application>
</manifest>

这是来自我的 java 并且基本上是最后一行,当我输入 // 程序不会关闭但它会显示为白页。但是标题 NFC 仍在显示,所以我知道它正在轻微工作

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
       mTagContent = (LinearLayout) findViewById(R.id.tag_viewer);
        mTitle = (TextView) findViewById(R.id.title);
      resolveIntent(getIntent());
    }
4

1 回答 1

1

更改您的声明活动"TagViewer"而不是".TagViewer"

于 2012-08-29T10:37:03.430 回答