2014-02-19 57 views
1

我遇到了點擊進入MultiAutoCompleteTextView時軟鍵盤未出現的問題。當我第一次點擊進入另一個EditText,然後更改爲MultiAutoCompleteTextView時,我可以輸入文本,但不能直接點擊它。單擊進入MultiAutoCompleteTextView時鍵盤不顯示

我不使用任何像requestFocus或onClick處理程序。

這裏是XML:

<MultiAutoCompleteTextView 
    android:id="@+id/thingTags" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_marginBottom="8dp" 
    android:layout_marginLeft="8dp" 
    android:layout_marginRight="8dp" 
    android:layout_marginTop="0dp" 
    android:hint="@string/hint_tags" 
    android:inputType="textShortMessage" 
    android:textIsSelectable="true" /> 

回答

2

原來的android:textIsSelectable="true"是罪魁禍首。如果我刪除它,它再次運作。