Android v21操作栏中没有文字

时间:2015-09-26 13:02:51

标签: android android-actionbar android-styles

我的操作栏中没有文字!这段代码有什么问题?只有蓝色背景。我尝试了一些不同的建议。如果我尝试使用原色等,那么这是一个无法移除的阴影。

style.xml:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
  <style name="AppTheme" parent="android:Theme.Material">
    <item name="android:colorPrimary">@color/blue</item>
    <item name="android:colorPrimaryDark">@color/blue</item>
    <item name="android:colorAccent">@color/white</item>
    <item name="android:textColor">@color/black</item>
    <item name="android:windowBackground">@color/white</item>
    <item name="android:actionBarStyle">@style/MyActionBarTheme</item>
</style>
<style name="MyActionBarTheme" parent="AppTheme">
        <item name="android:background">@color/blue</item>
        <item name="android:textColor">@color/white</item>
        <item name="android:textSize">20sp</item>
</style>
</resources>

这是XML文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/first"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#fff"
    android:focusable="true"
    android:focusableInTouchMode="true">


    <RelativeLayout
        android:id="@+id/header"
        android:elevation="10dp"
        android:background="@color/blue">

        ...

</RelativeLayout>

<ScrollView>

    ...

</ScrollView>
</RelativeLayout>

0 个答案:

没有答案