如何设置动作条图像与@style
问题描述:
我正在尝试设置可绘制在我的活动图像的ActionBar,使用@style,却看不到任何结果... 这是我@styles:如何设置动作条图像与@style
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:actionBarStyle">@style/MyActionBarTheme</item>
</style>
<style name="MyCustomTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBarTheme</item>
</style>
<style name="MyActionBarTheme" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@drawable/bgd</item>
</style>
这是我的活动代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:theme="@style/MyCustomTheme"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.roughike.bottombar.BottomBar
android:id="@+id/bottomBar"
android:layout_width="match_parent"
android:layout_height="52dp"
android:layout_alignParentBottom="true"
app:bb_behavior="shifting|underNavbar"
app:bb_tabXmlResource="@xml/bottombar_tabs_main_screen"/>
THAS的我有什么:
这是动作条,我想:
答
的解决方案是这样的(因为我使用程序兼容性):
-
我的风格:
@风格/动作条 @风格/动作条
@ drawable/bgd @ drawable/bgd @ mipmap/ic_launcher_round @纹理贴图/ ic_launcher_round useLogo | showHome
2.我不得不从我的清单文件revome任何标识atributes; 3.您可以在这里看到Logo are not displayed in Actionbar, using AppCompat
答
Im'm试图确切的活动中使用它,这是我的清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.workout.mauzerthecat.vesortupdate">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:theme="@style/MyCustomTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
同样重新SULT;
您是否在清单中包含了MyCustomTheme风格? –
你的App主题是什么?你有没有使用Theme.AppCompat相关的Activity或App主题?你能提供你的清单代码吗? –