您好我正在为Android创建一个示例启动器应用程序。但是当运行我的示例启动器应用程序时出现错误,如“不幸的是,SimpleLauncher已停止。”
我强烈认为这个错误可能是因为我的清单文件有问题,所以我附上了我的清单文件,请帮我解决问题。
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen"
android:launchMode="singleTask"
android:stateNotNeeded="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".AppsListActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
>
</activity>
</application>
答案 0 :(得分:0)
这个已编辑的清单效果很好......除非你想在你的应用中做一些奇特的东西。
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".AppsListActivity"/>
your styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
答案 1 :(得分:0)
您的Logcat提到您需要使用AppCompat主题。
转到styles.xml
并将AppTheme
更改为Theme.AppCompat