AutoCompleteTextView自动提示 Android自动提示控件AutoCompleteTextView
wei11556 人气:0想了解Android自动提示控件AutoCompleteTextView的相关内容吗,wei11556在本文为您仔细讲解AutoCompleteTextView自动提示的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android,自动提示,AutoCompleteTextView,下面大家一起来学习吧。
在输入框中输入我们想要输入的信息就会出现其他与其相关的提示信息,这种效果在Android中是用AutoCompleteTextView实现的。
<AutoCompleteTextView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/autotext" />
public class MainActivity extends Activity { private AutoCompleteTextView autotext; private ArrayAdapter<String> arrayAdapter; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.test); autotext =(AutoCompleteTextView) findViewById(R.id.autotext); String [] arr={"aa","aab","aac"}; arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,arr); autotext.setAdapter(arrayAdapter); } }
加载全部内容