以上问题的后续内容:ImageButton within row of ListView android not working 但经过SO大师的建议,有人建议我发布一个新问题。 问题是我有一个没有显示任何数据的自定义适配器。我已经研究了其他问题,但它没有提供解决方案。
在我的主要活动中,我有几个按钮,其中一个:ToDo,应该创建一个显示来自SQLite数据库的数据的行,并且根据某些因素(主要是日期),它显示了一种交通信号灯,存储为drawable。
此行中的部分项目是一个图像按钮,我希望用户能够单击并且图像应该更改。用户还应该能够单击实际行并开始新活动。
我遇到的问题是没有显示数据。
所以,这是我的代码:
public class MainActivity extends Activity {
// definitions etc ...
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// definitions etc ...
}
public void ToDo(View v){ // the user has clicked in the ToDo button
IgroDatabaseHelper helper = new IgroDatabaseHelper(getBaseContext()); // create instance of SQLIte database
numRows = helper.NumEntries("ToDo"); // Get the number of rows in table
int i = 1;
ArrayList<RowItem> rowItems = new ArrayList<>();
RowItem myItem1;
while (i <= numRows){
// get items from database
// depending on value select different drawable
// put data into List Array of RowItem
myItem1 = new RowItem(TheWhat, R.drawable.teamworka, R.drawable.redtrafficlight, R.drawable.checkbox, TheWhenBy);
rowItems.add(myItem1);
//
i = i+ 1;
}
ListView yourListView = (ListView) findViewById(R.id.list);
CustomListViewAdapter customAdapter = new CustomListViewAdapter(this, R.layout.todo_row, rowItems);
yourListView.setAdapter(customAdapter);
}
CustomListViewAdapter如下所示:
public class CustomListViewAdapter extends ArrayAdapter<RowItem> {
Context context;
ArrayList<RowItem> _rowItems;
public CustomListViewAdapter(Context context, int resourceId,
ArrayList<RowItem> rowItems) {
super(context, resourceId);
this.context = context;
_rowItems = rowItems;
System.out.println("I am in the custom Adapter class "+ _rowItems);
}
@Override
public View getView(int position, View convertView, ViewGroup parent){
System.out.println("This is the get view");
View row = convertView;
RowItem item = _rowItems.get(position);
// you can now get your string and drawable from the item
// which you can use however you want in your list
String columnName = item.getColumnName();
int drawable = item.getDrawable();
if (row == null) {
LayoutInflater mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
row = mInflater.inflate(R.layout.todo_row, parent, false);
}
ImageButton chkDone = (ImageButton) row.findViewById(R.id.chkDone);
chkDone.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
View parentRow = (View) v.getParent();
ListView listView = (ListView) parentRow.getParent();
final int position = listView.getPositionForView(parentRow);
System.out.println("I am in position "+ position);
}
});
return row;
}
}
RowItem类看起来像:
public class RowItem {
private String _heading;
private int _icon;
private int _lights;
private int _chkdone;
private String _date;
public RowItem(String heading, int icon, int lights, int chkDone, String date) {
_heading = heading;
_icon = icon;
_lights = lights;
_chkdone = chkDone;
_date = date;
System.out.println("adding stuff to my rows");
System.out.println("my column Name is " + heading);
System.out.println("My drawable int is "+ icon);
}
public String getColumnName() {
System.out.println("column Names is "+ _heading);
return _heading;
}
public int getDrawable() {
return _icon;
}
public int getLights(){
return _lights;
}
public int getchkDone(){
return _chkdone;
}
public String getDate(){
return _date;
}
}
我显然遗漏了一些东西,正如我前面提到的,没有数据显示出来。我知道有两个行项传递给CustomListViewAdapter。但我也知道CustomListViewAdapter中的View getView实际上并没有被调用。
我希望我已经提供了足够的信息/代码,但如果你觉得我需要进一步解释,请说。
提前感谢所有人!
答案 0 :(得分:1)
我没有看到getCount()方法。你应该这样压倒它:
@Override
public int getCount() {
return _rowItems.getCount();
}
或者,调用super(context, resourceId, rowItems);
也应该修复它。
答案 1 :(得分:0)
您的ListView认为没有要显示的项目。如果您使用自己的数组,则必须覆盖getCount()方法以指示要显示的项目数。