AutoCompleteTextView关联输入框

//获得控件 act = (AutoCompleteTextView) findViewById(R.id.act); //创建数据适配器 adapter = new ArrayAdapter(this, android.R.layout.simple_dropdown_item_1line,datas); //绑定 act.setAdapter(adapter); }}

你可能感兴趣的:(android)