我正在测试 Appcompat21的新材料设计特性,因此我创建了一个工具栏,如下所示:
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_my_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.ActionBar"/>
并将其包含在我的主布局文件中。
然后我将其设置为 support ActionBar,就像这样:
Toolbar toolBar = (Toolbar)findViewById(R.id.activity_my_toolbar);
setSupportActionBar(toolBar);
工作正常,但是我不知道怎么定制工具栏。它是灰色的,上面的文字是黑色的。如何更改背景和文本颜色?
我已经看过说明了:
Http://android-developers.blogspot.de/2014/10/appcompat-v21-material-design-for-pre.html
我监督了什么来改变颜色?
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:windowActionBar" tools:ignore="NewApi">false</item>
<item name="windowActionBar">false</item>
</style>
编辑:
我可以通过在主题中添加这些代码行来改变背景颜色:
<item name="colorPrimary">@color/actionbar</item>
<item name="colorPrimaryDark">@color/actionbar_dark</item>
但它们不会影响文本颜色。我错过了什么?与黑色文本和黑色菜单按钮相比,我更喜欢白色文本和白色菜单按钮: