1

我想将 TextInputLayout 中可见的提示颜色设置为我的自定义颜色(蓝色)。不幸的是,到目前为止我所取得的成就是: 屏幕 1

在此处输入图像描述

如何在我的自定义颜色中设置提示样式?

这就是我到目前为止所做的:

样式.xml

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/police_blue</item>
        <item name="colorPrimaryDark">@color/police_blue_dark</item>
        <item name="colorAccent">@color/police_blue_light</item>

        <item name="android:textColorHint">@color/police_blue_light</item>
        <item name="colorControlNormal">@color/police_blue_light</item>
        <item name="colorControlActivated">@color/police_blue_light</item>
        <item name="colorControlHighlight">@color/police_blue_light</item>
    </style>

布局文件.xml

<android.support.design.widget.TextInputLayout
        android:id="@+id/login_username_wrapper"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/login_username"
            android:hint="@string/username_hint"
        />
    </android.support.design.widget.TextInputLayout>
4

1 回答 1

0

在布局上应用android:background="@drawable/edittext_bg"

    <EditText
        android:la`enter code here`yout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/login_username"
        android:hint="@string/username_hint"
    />

在drawable下创建文件edittext_bg.xml并将此代码放入其中。

<layer-list>
   <item>
    <shape android:shape="rectangle">
        <!-- Draw a 2dp width border around shape -->
        <stroke`android:color="#ff1e0c"`
           android:width="2dp"
            />
    </shape>
</item>
<!-- Overlap the left, top and right border using background color  -->
<item android:bottom="2dp">
    <shape android:shape="rectangle">
        <solid android:color="#fffbce"/>
    </shape>
</item>

希望它可以帮助你。

于 2016-09-17T02:42:18.740 回答