我正在Android Studio中构建我的第一个(材料设计的)应用。我正在关注Slidnerd的Material设计播放列表,我达到了#5。我想知道如何让菜单弹出窗口有黑色文本,同时有白色的主要和辅助文本。谢谢!
答案 0 :(得分:0)
如果我不明白你的问题,你需要这个:
在xml中设置工具栏的颜色:
<android.support.v7.widget.Toolbar
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_awesome_toolbar"
android:layout_height="56dp"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="@color/purple_800" <!--color-->
app:theme="@style/ActionBarThemeOverlay"
app:popupTheme="@style/ActionBarPopupThemeOverlay"
android:elevation="2dp"/>
另一种风格:
<style name="NoActionBarTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:actionMenuTextColor">#fff</item>
<item name="android:windowAnimationStyle">@null</item>
</style>
<style name="ActionBarThemeOverlay" parent="">
<item name="android:textColorPrimary">#fff</item>
<item name="colorControlNormal">@color/gray_800</item>
<item name="colorControlHighlight">@color/gray_800</item>
<item name="android:textColor">#fff</item>
</style>
<style name="ActionBarPopupThemeOverlay" parent="ThemeOverlay.AppCompat.Light" >
<item name="android:background">@android:color/white</item>
<item name="android:textColor">#fff</item>
</style>
并且在值-v21中也包括
<item name="android:colorPrimary">@color/purple_900</item>
<item name="android:colorPrimaryDark">@color/purple_900</item>