-1

ヨ!

機能するボタンを作成しています。YouTubeビデオからヘルプとヒントを得ましたが、マニフェストにエラーが発生し、それを確認できません.. Androidマニフェストのコードの終わりを次に示します

    </activity>
     <activity android:name="com.tssandroid.phone.buttonOne"
              android:label="@string/app_name">
        <intent-filter>
          <action android:name="com.tssandroid.phone.TUTORIALONE" />
          <cetegory android:name="android.intent.category.DEFAULT" />
        <intent-filter>
    </activity>
</application>

4

1 に答える 1

1

あなたのコード:

<intent-filter>
    <action android:name="com.tssandroid.phone.TUTORIALONE" />
    <cetegory android:name="android.intent.category.DEFAULT" />
<intent-filter>

<intent-filter>終了タグはありません。

する必要があります:

<intent-filter>
    <action android:name="com.tssandroid.phone.TUTORIALONE" />
    <cetegory android:name="android.intent.category.DEFAULT" />
</intent-filter> 

PS:あなたの質問は非常にひどく形成されました。次回はエラーを含めるか、問題についてより明確にします。

于 2013-03-10T20:01:34.990 に答える