YO!
我正在制作一个工作按钮,我从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>
答案 0 :(得分: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:你的问题非常糟糕。下次包含错误或更清楚问题。