android 自动提示框,Android编程实现输入框动态自动提示功能

本文实例讲述了Android编程实现输入框动态自动提示功能。分享给大家供大家参考,具体如下:

关于AutoCompleteTextView的使用,我想大家并不陌生,对其设定上Adapter后系统便能自己识别与匹配了。近期 一个项目中,需要做到匹配通迅录中的电话号码和联系人,由于通迅录中数据量大,所以把所有的数据在自己提示之前就查询出来并加入到 AutoCompleteTextView中是不现实的,所以我们可以使用cursor来动态加载AutoCompleteTextView的数据,从而 实现时时搜索提示,要实现动态加载,只用重写一个类继承于CursorAdapter,然后设定在AutoCompleteTextView上就行了。

0936108b4dddd655289026d51c94884b.png

AutoCompleteTextView editNumber = (AutoCompleteTextView)findViewById(R.id.edit_number);

Cursor cursor = getContentResolver()(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null, null, null);

ContactListAdapter listAdapter = new ContactListAdapter(this, cursor);

editNumber.setAdapter(listAdapter);

ContactListAdapter.java中的核心代码如下:

重写newView方法

public View newView(Context context, Cursor cursor, ViewGroup parent) {

final LayoutInflater inflater = LayoutInflater.from(context);

final View view = (View)inflater.inflate( R.layout.auto_complete, parent, false);

TextView txtName = (TextView)view.findViewById(R.id.txt_name);

txtName.setText(cursor.getString(0));

TextView txtNumber = (TextView)view.findViewById(R.id.txt_number);

txtNumber.setText(cursor.getString(1));

TextView txtType = (TextView)view.findViewById(R.id.txt_type);

String[] arrType = SmsConstant.ARR_CONTACTS_TYPE;

if(cursor.getint(2) > 3)

{

txtType.setText(arrType[0]);

} else

{

txtType.setText(arrType[cursor.getint(2)]);

}

return view;

}

重写bindView方法,

public void bindView(View view, Context context, Cursor cursor) {

TextView txtName = (TextView)view.findViewById(R.id.txt_name);

txtName.setText(cursor.getString(0));

TextView txtNumber = (TextView)view.findViewById(R.id.txt_number);

txtNumber.setText(cursor.getString(1));

TextView txtType = (TextView)view.findViewById(R.id.txt_type);

String[] arrType = SmsConstant.ARR_CONTACTS_TYPE;

if(cursor.getint(2) > 3)

{

txtType.setText(arrType[0]);

} else {

txtType.setText(arrType[cursor.getint(2)]);

}

}

点击弹出的Listview列表后的返回值:

public String convertToString(Cursor cursor) {}

执行搜索的sql语句,返回一个Cursor加载到弹出的Listview上

public Cursor runQueryOnBackgroundThread(CharSequence constraint) {}

在此所返回的Cursor结果,会全部显示在弹出提示上,无需再次过虑。

希望本文所述对大家Android程序设计有所帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值