91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發中怎么實現一個輸入框提示功能

發布時間:2020-11-26 15:46:35 來源:億速云 閱讀:146 作者:Leah 欄目:移動開發

這篇文章給大家介紹Android開發中怎么實現一個輸入框提示功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

可以使用cursor來動態加載AutoCompleteTextView的數據,從而 實現時時搜索提示,要實現動態加載,只用重寫一個類繼承于CursorAdapter,然后設定在AutoCompleteTextView上就行了。

Android開發中怎么實現一個輸入框提示功能

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開發中怎么實現一個輸入框提示功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙岩市| 柘荣县| 峨边| 崇左市| 海宁市| 尖扎县| 普兰店市| 建瓯市| 栖霞市| 扎鲁特旗| 固安县| 洛川县| 拉萨市| 舞阳县| 卓资县| 东乡族自治县| 大悟县| 张家川| 伊春市| 康乐县| 郸城县| 交口县| 中江县| 阿拉善盟| 保靖县| 喀什市| 宣化县| 辽宁省| 增城市| 榆社县| 景德镇市| 祁东县| 波密县| 潼关县| 灵台县| 太保市| 玛曲县| 洛南县| 射洪县| 揭阳市| 霍山县|