尝试使用自定义ArrayAdapter类从arrays.xml获取数组到ListView。怎么了?

时间:2011-12-04 16:02:02

标签: android listview adapter android-arrayadapter

谁能告诉我我做错了什么? Eclipse没有给我任何错误或警告,但是当我运行模拟器时我的ListView没有被填充。任何帮助深表感谢。感谢。

这是在onCreate:

ListView bedList = (ListView) findViewById(R.id.refineBeds);
bedList.setVisibility(View.VISIBLE); 
bedList.setAdapter(new MArrayAdapter(this, R.array.beds));
bedList.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

这是我尝试用作我的适配器的自定义内部类:

private static class MArrayAdapter extends ArrayAdapter<String> {
    public MArrayAdapter(final Context context, final int objects) {
    super(context, R.layout.item_single, objects);
}

@Override
public View getView(final int position, final View convertView, final ViewGroup parent) {
    final CheckedTextView view = (CheckedTextView)
    super.getView(position, convertView, parent);
    view.setChecked(position == 2); return view;
    }
}

2 个答案:

答案 0 :(得分:4)

首先尝试没有这样的自定义布局,然后最终您可以使用自己的布局进行调整:

...

String[] bedsArray = getResources().getStringArray(R.array.beds);

bedList.setListAdapter(new ArrayAdapter<String>(
                           this,
                           android.R.layout.simple_expandable_list_item_1,
                           bedsArray));

...

答案 1 :(得分:0)

问题在于以下这一行

new MArrayAdapter(this, R.array.beds)

这对应于以下定义

public ArrayAdapter (Context context, int textViewResourceId)

尝试从R.array.beds创建字符串元素列表并使用以下构造函数

public ArrayAdapter (Context context, int textViewResourceId, List<T> objects)