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 に答える