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>
答案 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