2017-04-19 66 views
-4
<AutoCompleteTextView 
      android:id="@+id/edtname"> 

我試圖android:hintandroid:CompletionHint,但無法顯示在AutocompleteTextView提示文本。問題:提示=「」功能

在此先感謝!

回答

0

設置該XML的:

<AutoCompleteTextView 
     android:id="@+id/autoc" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_conten" 
     android:ems="10" 
     android:text="" 
     android:hint="HintYouWantToGive" /> 
+0

謝謝。我早些時候嘗試過,它顯示了設計中的暗示,但它在運行時不起作用,可能是一些數據處理活動而忽略了它的價值。是否有任何步驟來實際驗證提示(除了只在觸摸文本視圖後設置提示的sethint之外)。 –

+0

排序。謝謝 。問題與提示和背景的顏色:) –

0

使用屬性:android:hint顯示hint文本。對於hint textbackground,您應該使用不同的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> 
+0

謝謝你。我早些時候嘗試過,它顯示了設計中的暗示,但它在運行時不起作用,可能是一些數據處理活動而忽略了它的價值。是否有任何步驟來實際驗證提示(除了只在觸摸文本視圖後設置提示的sethint之外)。 –

+0

排序。謝謝 。問題是與提示和背景的顏色:) –

+0

哦,我明白了,這是一個常見的錯誤。您應該爲提示文字和背景使用不同的顏色。順便說一句,高興地知道它的工作... – FAT

0
<AutoCompleteTextView 
     android:id="@+id/autoCompleteTextView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:hint="**Your Hint**" /> 
+0

謝謝。我早些時候嘗試過,它顯示了設計中的暗示,但它在運行時不起作用,可能是一些數據處理活動而忽略了它的價值。是否有任何步驟來實際驗證提示(除了只在觸摸文本視圖後設置提示的sethint之外)。 –

+0

排序。謝謝 。問題與暗示和背景的顏色:) –

+0

好的...歡迎... –