要了解游戏应用程序的实现过程,所以导入了游戏项目,但是当我运行项目时,我在logcat中收到此错误消息“未找到Launcher活动!启动只会同步设备上的应用程序包!”甚至编辑我的表现,但仍然得到输出“ Manifeast.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jamescho.androidgame"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
答案 0 :(得分:1)
未找到Launcher活动!
将活动声明为Launcher,它在应用程序启动时最初打开并在AndroidManifest.xml中声明所有活动
<activity android:name=".ActitityName" android:label="@string/app_name" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
答案 1 :(得分:0)
将活动声明为Launcher,它在应用程序启动时最初打开并在AndroidManifest.xml中声明所有活动