<AutoCompleteTextView
android:id="@+id/edtname">
我試圖android:hint
和android:CompletionHint
,但無法顯示在AutocompleteTextView提示文本。問題:提示=「」功能
在此先感謝!
<AutoCompleteTextView
android:id="@+id/edtname">
我試圖android:hint
和android:CompletionHint
,但無法顯示在AutocompleteTextView提示文本。問題:提示=「」功能
在此先感謝!
設置該XML的:
<AutoCompleteTextView
android:id="@+id/autoc"
android:layout_width="wrap_content"
android:layout_height="wrap_conten"
android:ems="10"
android:text=""
android:hint="HintYouWantToGive" />
使用屬性:android:hint
顯示hint
文本。對於hint text
和background
,您應該使用不同的color
。
<AutoCompleteTextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="This is a hint"
android:textColorHint="#000000"
android:background="#FFFFFF" >
</AutoCompleteTextView>
謝謝你。我早些時候嘗試過,它顯示了設計中的暗示,但它在運行時不起作用,可能是一些數據處理活動而忽略了它的價值。是否有任何步驟來實際驗證提示(除了只在觸摸文本視圖後設置提示的sethint之外)。 –
排序。謝謝 。問題是與提示和背景的顏色:) –
哦,我明白了,這是一個常見的錯誤。您應該爲提示文字和背景使用不同的顏色。順便說一句,高興地知道它的工作... – FAT
<AutoCompleteTextView
android:id="@+id/autoCompleteTextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="**Your Hint**" />
謝謝。我早些時候嘗試過,它顯示了設計中的暗示,但它在運行時不起作用,可能是一些數據處理活動而忽略了它的價值。是否有任何步驟來實際驗證提示(除了只在觸摸文本視圖後設置提示的sethint之外)。 –
排序。謝謝 。問題與暗示和背景的顏色:) –
好的...歡迎... –
謝謝。我早些時候嘗試過,它顯示了設計中的暗示,但它在運行時不起作用,可能是一些數據處理活動而忽略了它的價值。是否有任何步驟來實際驗證提示(除了只在觸摸文本視圖後設置提示的sethint之外)。 –
排序。謝謝 。問題與提示和背景的顏色:) –