- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我根据我的需要改编了 Jeff Sharkey 的 SeparatedListAdapter 并得到了这样的东西:
public class SeparatedListAdapter<T> extends BaseAdapter {
@SuppressWarnings("unused")
private final String LOG_TAG = getClass().getSimpleName();
public final static int TYPE_SECTION_HEADER = 0;
public final Map<T, Adapter> sectionAdapters;
public final ArrayAdapter<T> headerAdapter;
public SeparatedListAdapter(ArrayAdapter<T> headerAdapter) {
super();
this.sectionAdapters = new LinkedHashMap<T,Adapter>();
this.headerAdapter = headerAdapter;
}
public void addSection(T section, Adapter adapter) {
this.headerAdapter.add(section);
this.sectionAdapters.put(section, adapter);
}
public void clearSections() {
this.headerAdapter.clear();
this.sectionAdapters.clear();
}
@Override
public int getCount() {
// total together all sections, plus one for each section header
int total = 0;
for(Adapter adapter : this.sectionAdapters.values())
total += adapter.getCount() + 1;
return total;
}
@Override
public int getViewTypeCount() {
//count headers, then total all sections
int total = this.headerAdapter.getViewTypeCount();
for(Adapter adapter : this.sectionAdapters.values())
total += adapter.getViewTypeCount();
return total;
}
@Override
public int getItemViewType(int position) {
int type = 1;
for(Object section : this.sectionAdapters.keySet()) {
Adapter adapter = sectionAdapters.get(section);
int size = adapter.getCount() + 1;
// check if position inside this section
if(position == 0) return TYPE_SECTION_HEADER;
if(position < size) return type + adapter.getItemViewType(position - 1);
// otherwise jump into next section
position -= size;
type += adapter.getViewTypeCount();
}
return -1;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
int sectionnum = 0;
for(Object section : this.sectionAdapters.keySet()) {
Adapter adapter = sectionAdapters.get(section);
int size = adapter.getCount() + 1;
// check if position inside this section
if(position == 0)
return headerAdapter.getView(sectionnum, convertView, parent);
if(position < size)
return adapter.getView(position - 1, convertView, parent);
// otherwise jump into next section
position -= size;
sectionnum++;
}
return null;
}
@Override
public boolean areAllItemsEnabled() {
return false;
}
@Override
public boolean isEnabled(int position) {
return (getItemViewType(position) != TYPE_SECTION_HEADER);
}
}
我遇到的问题是 API 将 onvertView 对象从错误的适配器提供给 getView(),从而导致出现问题。我认为我正确地实现了 getViewTypeCount() 和 getItemViewType() 并使用调试器进行了检查。还有什么可能出错?
这是我的一个适配器:
public static class MeetingAdapter extends ArrayAdapter<Meeting> {
static class ViewHolder {
TextView title;
}
private LayoutInflater inflater;
public MeetingAdapter(Activity context, List<Meeting> meetings) {
super(context, 0, meetings);
this.inflater = LayoutInflater.from(context);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
Meeting meeting = getItem(position);
View rowView = convertView;
ViewHolder holder;
// instanceof should not be necessary!!! normally convertView should be of the right type!
if (rowView == null || !(rowView.getTag() instanceof ViewHolder)) {
rowView = inflater.inflate(R.layout.list_item, null);
holder = new ViewHolder();
holder.title = (TextView)rowView; // tmp - layout contains only a textview for the moment
rowView.setTag(holder);
} else {
holder = (ViewHolder)rowView.getTag();
}
holder.title.setText(meeting.getTrack());
return rowView;
}
}
请帮忙?为这个疯狂。
最佳答案
我发现问题出在 ListView 的 RecybleBin 对象上。它根据来自 getItemViewType 的报告类型存储可能的 convertViews,但是在您更改数据集(因此位置)之后,它的内容永远不会更新,然后当您的适配器根据其位置获取曾经是类型“X”的 View 时,但是现在它恰好是类型“Y”。一种解决方案是手动检查 getView 是否不仅 convertView 为 null,而且它的类型是否正确(有时真的很尴尬......如果您使用 View 持有者模式,您可以检查标签是否与相应的 View 持有者类匹配)
关于android - 为什么 getView 在 SeparatedListAdapter 上返回错误的 convertView 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12018997/
我想要自定义微调器,在下拉列表中包含图像和 TextView ,因此我创建了不同的布局并对其进行了膨胀,其工作正常,但对于按微调器之前的微调器布局,我只想有一个类似“选择”的文本来自列表”但是当我用
所以我正在开发实时 ListView ,我需要 ListView 在单击按钮时更新,这些也是如此: private void ReloadData(){ DataList.clear();
我知道其他人也问过这个问题,但我看过其他解决方案,但仍然无法使其发挥作用。 适配器代码: private class CustomTextAndImageAdapter extends ArrayAd
我有一个通过 asynctask 填充的自定义 ListView 适配器,我在 onprogress 函数中调用 notificationdatasetchanged,并且 getCount() 返回
我正在显示联系人列表。一切都很好,除了设备有 1620 个联系人,所以列表滚动非常慢,甚至有时会挂起。 请帮帮我。 我尝试使用检查 ConvertView!=null 的 getView 方法,但它总
我想在每张图片下方添加一个文本,这是我的实际代码: @Override public View getView(int position, View convertView, ViewGroup pa
我在 Adapter extensions override of getView 中经常看到这一点: @Override public View getView(int position,
我正在尝试在对话框中制作 ListView 。但是我的适配器中的 getView 函数永远不会被调用。有什么想法吗? 适配器: public class DialogAdapter extends B
我有 public class MainActivity extends FragmentActivity 我编写了实现 AsyncResponse 的 Loader 类: public class
我有这样一段代码:)我想编辑我的自定义首选项布局的文本属性。但是从 getView 函数对对象所做的任何更改都不会影响首选项屏幕中的实际列表。有任何想法吗?我知道我不能扩展 PreferenceScr
我有一个扩展 simplecursoradapter 的适配器。新 View 应该从数据库中获取光标和图像,用几个复选框填充列表。出于某种原因,我似乎看不到,我的 getView 甚至没有被调用。我在
谁能解释一下这两种 getView() 实现之间的区别是什么? 第一个简单地检查 convertView 是否为 null;如果它为 null,则膨胀一个新的 View 对象。然后给子View设置合适
我做了一个 SingleItemAdapter extends ArrayAdapter,这个定制的 Adapter 用于 ListView。 在这个 SingleItemAdapter 中,我做了一
这里是相当新的 Android 开发者。 我遇到了一个奇怪的问题,我不确定如何解决。我在这里阅读了很多问题,听起来它们与我遇到的问题相同,但他们问题的解决方案似乎永远不适用于这里发生的事情。 我使用扩
我有一个带有 ListFragment 的自定义适配器,但根本没有调用适配器 getView()。 这是适配器的样子 - public class ModuleListItemAdapter exte
我正在将自定义 SimpleCursorAdapter 设置为 ListView。出于某种原因,对于数据库中的每个项目,FriendAdapter 的 getView() 被调用两次。经过一些调查(我
我有一个包含自定义适配器和自定义行的列表。 问题是当我滚动 ListView 时,图像位于错误的位置... 这是自定义行 xml: 这是 GetView: List it
public View getView(int index, View view, ViewGroup parent){ if (view == null) { // for the firs
我添加了两个按钮(添加和删除)来控制 ListView ,当我删除一个项目时,该项目不会立即在 ListView 中消失,只有当我在 ListView 上滑动时,新项目才会消失。除非我触摸屏幕或在 L
我已经多次尝试在我的 Controller 上使用 this.getView(),但我总是在我的控制台上收到 getView is not a function 错误。 是否有任何“技巧”或我可以做的
我是一名优秀的程序员,十分优秀!