如何将图像设置为背景n动作栏的文本颜色?

时间:2015-10-31 18:15:29

标签: android

我想将backgroung图像设置为主要活动的动作栏和所有活动,并且还想要动作文本的文本颜色 我试过这个代码,但它给了我错误 请帮帮我

style.xml

<resources>
<!-- Base application theme. -->
<style name="AppThe" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
<style name="ActionBar" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:background">@drawable/actionbar_background</item>
</style>
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/ActionBar</item>
</style> 
</resources>`

清单代码

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

    <uses-sdk
        android:minSdkVersion="15"
        android:targetSdkVersion="23" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="OLXA"
        android:theme="@style/AppThe" >
        <activity
            android:name="com.example.hp.navigationd.MainActivity"
            android:label="OLXA" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.hp.navigationd.post_ad"
            android:label="@string/Ad_Details"
            android:parentActivityName="com.example.hp.navigationd.MainActivity" />
        <activity android:name="com.example.hp.navigationd.My_account" />
        <activity android:name="com.example.hp.navigationd.My_fav" />
        <activity android:name="com.example.hp.navigationd.My_ads" />
        <activity android:name="com.example.hp.navigationd.My_chats" />
        <activity android:name="com.example.hp.navigationd.Rules" />
        <activity android:name="com.example.hp.navigationd.Help" />
        <activity android:name="com.example.hp.navigationd.About_us" />
    </application>

</manifest>  

2 个答案:

答案 0 :(得分:0)

试试这个,

绝对使用,

use strict; use warnings; my $start = gmtime(); # do something my $finish=gmtime(); print "The script last "; minutes=, hours=, days=, weeks='

使用此,

<style name="AppThe" parent="Theme.AppCompat.Light.DarkActionBar">

答案 1 :(得分:0)

查看以下风格。

 <style name="AppThe" parent="Theme.AppCompat.Light.DarkActionBar">
       <!-- Customize your theme here. -->
       <item name="android:actionBarStyle">@style/ActionBar</item>
       <item name="actionBarStyle">@style/ActionBar</item>
  </style>
  <style name="ActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
       <item name="android:background">@drawable/actionbar_background</item>
       <item name="background">@drawable/actionbar_background</item>
  </style>

您需要同时使用android:actionBarStyle and actionBarStyleandroid:background and background项目。前者适用于本机支持ActionBar的较新版本的android。后者适用于较旧的Android版本。

关于错误:
您无法将"@android:style/Theme.Holo.Light"AppCompatActivity

一起使用