更改提示EditText - Android的颜色

时间:2016-05-04 19:29:40

标签: android android-edittext

这里我有我想要的提示颜色(蓝色),照片nº1,但当我点击它变成粉红色时,照片nº2。 我怎么能把它变成蓝色? 我试图改变hintColor,但它没有用。

<EditText
                android:id="@+id/password"
                android:backgroundTint="@android:color/holo_blue_dark"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="@string/prompt_password"
                android:textColorHint="@android:color/holo_blue_dark"
                android:imeActionId="@+id/login"
                android:imeActionLabel="@string/action_sign_in_short"
                android:imeOptions="actionUnspecified"
                android:inputType="textPassword"
                android:maxLines="1"
                android:singleLine="true" />`

Photo 1

Photo 2

3 个答案:

答案 0 :(得分:2)

对于那些想在评论后知道答案的人。 只需将它放在style.xml文件中即可。 很多

<item name="colorAccent">@android:color/holo_blue_dark</item>

答案 1 :(得分:0)

你可以尝试使用类似这样的直接颜色代码

android:textColorHint="#4C33FF"

答案 2 :(得分:0)

尝试TextInputLayout

<android.support.design.widget.TextInputLayout
android:textColorHint="#F7B7C2"
android:layout_width="match_parent"
android:layout_height="match_parent">

<EditText
    android:id="@+id/myid"
    android:textColor="@android:color/black"
    android:hint="something"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
</android.support.design.widget.TextInputLayout>  

<强>更新

更改你的&#34; colorAccent&#34;使用您需要的颜色在Apptheme styles.xml文件中