我是Android应用程序开发的新手,最近在Styling the Action Bar page上遇到了障碍。
每当我将主题更改为android:theme="@android:style/Theme.Holo.Light"
时,只是不允许程序在android上运行,并显示“不幸的是,程序已停止”。每次我尝试运行它。奇怪的是它在Eclipse上完全保存完好没有错误。
这是我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstappv2"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo">
<activity
android:name="com.example.myfirstappv2.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.myfirstappv2.DisplayMessageActivity"
android:label="@string/title_activity_display_message"
android:parentActivityName="com.example.myfirstappv2.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.myfirstappv2.MainActivity" />
</activity>
</application>
</manifest>
logcat的:
06-15 21:17:24.748: E/AndroidRuntime(5350): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.myfirstappv2/com.example.myfirstappv2.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
答案 0 :(得分:4)
如果您的活动属于ActionBarActivity
,那么您需要使用其中一个Theme.AppCompat
变体(即Theme.AppCompat
,Theme.AppCompat.Light
和&amp; c)。
注意:如果您使用支持库API作为操作栏, 那么你必须使用(或覆盖)
Theme.AppCompat
系列的样式 (而不是API级别11和中提供的Theme.Holo
系列 更高)。这样做,您声明的每个样式属性必须是 声明了两次:一次使用平台的样式属性( android:properties)并且一旦使用了包含的样式属性 支持库(appcompat.R.attr属性 - 的上下文 这些属性实际上是你的应用程序。)
不要忘记“添加属性两次”部分。