在我的应用中,我需要在自动完整文本视图中填充联系人的电子邮件ID。我使用内容解析器在游标中获得了电子邮件ID。现在我必须为自动完成textview实现游标适配器,以便从游标填充电子邮件ID。我尝试了以下代码,但它没有从光标加载电子邮件ID。
我的游标适配器类如下:
public class AutoEmailAdapter extends CursorAdapter{
private LayoutInflater inflater;
public AutoEmailAdapter(Context context, Cursor c) {
super(context, c);
inflater = LayoutInflater.from(context);
Log.e("adapter", "18");
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
Log.e("","bindview");
String t = cursor.getString(1);
Log.e("adapter @ 23", t);
((TextView) view).setText(t);
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
Log.e("","newview");
inflater = LayoutInflater.from(context);
final TextView view = (TextView) inflater.inflate(android.R.layout.simple_dropdown_item_1line, parent, false);
String te = cursor.getString(1);
Log.e("@33",te);
view.setText(te);
return view;
}
@Override
public String convertToString(Cursor cursor) {
Log.e("","convertTostring");
return cursor.getString(1);
}
}
android不会超越构造函数。 bindView,newView和convertToString方法没有调用。
在我的主类中,我按以下方式调用了适配器类:
AutoEmailAdapter adapter = new AutoEmailAdapter(MainActivity.this, cursor_emailIds);
emailId.setAdapter(adapter);
我不知道我的代码无法在自动完成文本视图中加载电子邮件的原因。请帮帮我。
答案 0 :(得分:1)
感谢大家通过使用资源游标适配器解决了问题。