Android--自动搜索提示
一. 效果图
在Google或者百度搜索的时候,在输入关键词都会出现自动搜索的提示内容,类似如下的效果,输入b 则出现包含b的相关词条
二. 布局代码
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <AutoCompleteTextView android:id="@+id/autoText" android:layout_width="match_parent" android:layout_height="60dp" android:layout_marginTop="10dp" /> </LinearLayout>
以上是上面效果的布局代码,使用的是AutoCompleteTextView组件
三.设置数据源
在这里使用AutoCompleteTextView同样需要到ArrayAdapter<T> 这个类
public class PicActivity extends Activity { private String[] items={ "ab", "db", "adg", "dbee", "adre", "ayrtr", "btee", "bdw", "bt45", "aire", "vfdr", "434" }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_pic); AutoCompleteTextView autoText=(AutoCompleteTextView)findViewById(R.id.autoText); ArrayAdapter<String> adapter=new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, items); autoText.setAdapter(adapter); autoText.setThreshold(1); } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。