我创建了一个非常简单的活动,显示 hello world 和一个标记为 TEST 的按钮,当我按下这个按钮时,Toast 将显示一条消息,我在模拟器上运行这个应用程序。
问题是,当我尝试运行此应用程序时,控制台会显示
no launcher activity found
尽管代码完全没有错误,但模拟器上没有任何显示。
清单.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.qr00"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".QR00"
android:label="@string/title_activity_qr00" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="QR00" />
</activity>
</application>
谁能告诉我如何解决“未找到启动器活动”错误?