如何使用 SimpleAdapter 在 ListView 中添加不同类型的项目?
我想将不同类型的项目(例如简单的文本视图)添加到 ListView
中的最后一个位置。
我扩展了 SimpleAdapter 并重写了一些方法:
@Override
public int getCount() {
if (super.getCount() == 0) {
return 0;
} else {
return super.getCount() + 1;
}
}
@Override
public Object getItem(int position) {
if (position == getCount() - 1) {
return null;
} else {
return super.getItem(position);
}
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v;
if (position == getCount() - 1) {
if (convertView == null) {
v = new TextView(mContext);
} else {
v = convertView;
}
return v;
} else {
return super.getView(position, convertView, parent);
}
}
但它不起作用。有什么问题或者如何添加? 谢谢。
I want to add a different type of item (like a simple textview) to the last position in my ListView
.
I extends the SimpleAdapter
and override some methods:
@Override
public int getCount() {
if (super.getCount() == 0) {
return 0;
} else {
return super.getCount() + 1;
}
}
@Override
public Object getItem(int position) {
if (position == getCount() - 1) {
return null;
} else {
return super.getItem(position);
}
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v;
if (position == getCount() - 1) {
if (convertView == null) {
v = new TextView(mContext);
} else {
v = convertView;
}
return v;
} else {
return super.getView(position, convertView, parent);
}
}
But it did not work. What is the problem or how to add one?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用页脚,在您的活动中尝试
在将适配器添加到列表视图之前必须执行此操作。
Try using a footer instead, in your activity try
You have to do this before you add the adapter to the listview.