当我想在我的应用程序上添加此代码时,它给了我:"不幸的是,MyApp已停止"。
是因为我添加了这一行:android:theme="@android:style/Theme.Dialog"
我也尝试添加此行android:theme="@android:style/Theme.Holo"
但仍然无效
<activity android:name=".About" android:label="@string/about_title" android:theme="@android:style/Theme.Dialog"> </activity>
请帮帮我。感谢
答案 0 :(得分:0)
TRY: 将android:theme =“@ style / Theme.AppCompat.Light”添加到AndroidManifest.xml文件中的应用程序标记。
<activity android:name=".About" android:label="@string/about_title" android:theme="@style/Theme.AppCompat.Light"> </activity>