基本上,我想在EditText屬性focusable
和foucsableInTouchMode
設置爲false時更改提示的顏色。android中的hinttext顏色選擇器
這與textColor
一切都很好,但與Editext的textColorHint
財產無用。
我盡我最大的努力,但所有的靜脈,所以我的代碼如下
我已創建了一個名爲「colorListfile」表述如下繪製,
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_window_focused="false"
android:state_enabled="true"
android:color="@color/colorPrimaryDark" />
<item
android:state_window_focused="false"
android:state_enabled="false"
android:color="@color/white" />
<item
android:state_focused="true"
android:color="@color/login_signup_header_textcolor" />
<item
android:color="@color/colorPrimary" />
</selector>
我的EditText如下圖所示,
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="zuluzulu01"
android:textColorHint="@drawable/colorListfile"
android:hint="Name" />
但是這個或任何其他方法沒有奏效。但是,如果此屬性設置爲textColor
,則此代碼正常工作。
任何幫助將不勝感激。
可以將'color'更改爲'drawable',例如像'<項 機器人:state_focused = 「真」 機器人:抽拉= 「@顏色/ login_signup_header_textcolor」/>' –
@周恩旭,由於哥們,但這也行不通 –