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

2

使用されたすべてのファイルの例、ファイルの作成方法、またはファイルを作成する必要があるという例は含まれていません。

@android の使用を忘れていることに加えて、actionbar_background.xml のようなファイルをこの場合 res/drawable/ の下に作成する必要があること、または themes.xml を res/values/ の下に作成する必要があることについて言及していないようです。

彼らは次を使用してスタイルを作成したようです(ガイドの写真用):
http://jgilfelt.github.io/android-actionbarstylegenerator/

そして、ファイルは次のように生成されました:
http://developer.android.com/guide/topics/resources/drawable-resource.html

この章の残りの部分でも同じことを行います。あなたが新しいとき、ガイドはかなり混乱します。

尋ねられた質問から、彼らはAndroid 開発者でガイドを使用したと思います。

于 2013-11-14T07:50:26.103 に答える
0

themes.xml を styles.xml に追加できます

于 2013-09-12T06:15:43.440 に答える