android:inputType =“textAutoComplete”不起作用

时间:2015-08-11 07:34:32

标签: android material-design

来自Android上TextAutoComplete库的上一版本的TextInputLayout

appcompat.design不起作用。

<android.support.design.widget.TextInputLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/comment_title">

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:textColor="@color/black"
        android:hint="Заголовок"
        android:maxLength="10"
        android:inputType="text|textAutoCorrect|textCapSentences|textAutoComplete"
        >
    </EditText>

</android.support.design.widget.TextInputLayout>

2 个答案:

答案 0 :(得分:3)

Android AutoCompleteTextView是一个可编辑的文本字段,它在下拉菜单中显示建议列表,用户只能从中选择一个建议或值。 所以请使用AutoCompleteTextView代替EditText。我希望它对您有所帮助。 出于演示目的,请查看android-autocompletetextview-example

答案 1 :(得分:0)

只需使用$(document).ready(function() { $(".filter").click( function () { var filter = '.' + $(this).attr('href').replace('#',''); $("li") .filter(filter).fadeTo("slow", 1) // fade in those not filtered .end() // Back to original set. .not(filter).fadeTo("slow", 0.33); // fade out those filtered. }); $(".clearfilter").click( function() { $("li").fadeTo("slow", 1); }); }); 代替普通AutoCompleteTextView

在这里你可以找到一个例子。 http://developer.android.com/guide/topics/ui/controls/text.html