更改android浮动文本标签的颜色属性

时间:2015-12-25 08:36:19

标签: android

我在更改浮动文本标签的颜色属性时遇到了困难 我的XML代码如下所示:

 <android.support.design.widget.TextInputLayout
        android:theme="@style/MyMaterialTheme.Base"
        android:id="@+id/input_name"
        android:layout_below="@+id/tool_bar_first_login"
        android:layout_marginTop="20dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <EditText

            android:id="@+id/edit_input_name"
            android:textColorHint="@color/textColorPrimary"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="@string/name" />
 </android.support.design.widget.TextInputLayout>

我的Styles.XML看起来像这样:

<resources>

    <style name="MyMaterialTheme" parent="MyMaterialTheme.Base">

    </style>

    <style name="MyMaterialTheme.Base" parent="Theme.AppCompat.NoActionBar">
        <item name="android:windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="android:windowBackground">@color/windowBackground</item>
        <item name="android:textColor">@color/textColorPrimary</item>
        <item name="android:textStyle">normal</item>
    </style>


</resources>

我想更改文本颜色,提示文本颜色,编辑框未选中时的线条颜色,并在选中时编辑框线条颜色。 我无法改变颜色。

0 个答案:

没有答案