4

我的安卓项目

AndoidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.myfirstapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:debuggable="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/CustomActionBarTheme" >
        <activity
            android:name="com.example.myfirstapp.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.myfirstapp.DisplayMessageActivity"
            android:label="@string/title_activity_display_message"
            android:parentActivityName="com.example.myfirstapp.MainActivity" >
         <meta-data 
             android:name="android.support.PARENT_ACTIVITY"
             android:value="com.example.myfirstapp.MainActivity" /> 
        </activity>
    </application>


</manifest>

当我尝试在下实现自定义主题时res\values\themes.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
      <!-- the theme applied to the application or activity -->
      <style name="CustomActionBarTheme"  
          parent="@style/Theme.Holo.Light.DarkActionBar">
       <item name="android:actionBarStyle">@style/MyActionBar</item> 
       </style>      <!-- ActionBar styles -->

       <style name="MyActionBar"            
           parent="@style/Widget.Holo.Light.ActionBar.Solid.Inverse">
       <item name="android:background">@drawable/actionbar_background</item>
       </style>  
</resources>

我得到错误指定

Error retrieving parent for item: No resource found that matches the given name '@style/Theme.Holo.Light.DarkActionBar'.Error retrieving parent for item: No resource found that matches the given name '@style/ Widget.Holo.Light.ActionBar.Solid.Inverse'.

4

3 回答 3

6

您必须android:在样式之前编写,即@android:style/Theme.Holo.Light.DarkActionBar.

于 2013-09-12T06:09:53.410 回答
2

他们没有包括所有使用的文件的示例,或者他们如何制作文件或需要创建文件的示例。

似乎除了他们忘记了@android的使用之外,他们没有提到在这种情况下必须在 res/drawable/ 下创建像 actionbar_background.xml 这样的文件,或者应该在 res/values/ 下创建themes.xml

他们似乎使用以下方式创建了样式(用于指南中的图片):http:
//jgilfelt.github.io/android-actionbarstylegenerator/

并且文件自己生成如下:http:
//developer.android.com/guide/topics/resources/drawable-resource.html

他们在本章的其余部分做同样的事情。当您是新手时,该指南非常混乱。

从提出的问题中,我假设他们已经使用了android 开发人员的指南

于 2013-11-14T07:50:26.103 回答
0

您可以将 theme.xml 添加到 styles.xml

于 2013-09-12T06:15:43.440 回答