- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我不得不承认我是 Android 的新手,我的 ExpandableListView 给我带来了很多麻烦。我认为是适配器工作不正常。我正在使用一个扩展 BaseExpandableListAdapter 的类。
从日志中我知道了这么多:我交给适配器构造函数的列表已正确填写。 getGroupCount 返回 1(是的,只有 1 个组),getChildrenCount 返回 18(正如预期的那样)。方法 getGroupView 被调用 (Log.d...) 但 getChildView 不是 - 不是在此方法的最开始记录时而不是调试时(未达到断点)。没有错误消息 - 只是 ExpandableListView 静静地没有展开。
知道哪里出了问题吗?我需要一个 ViewHolder 还是它没有正确地膨胀组?我完全迷路了...
我的部分代码:
package de.cimitery.android.cimitery;
import java.util.List;
import android.app.Activity;
import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.CheckBox;
import android.widget.TextView;
public class ExpandableAdapter extends BaseExpandableListAdapter {
private List<GroupCat> catList;
private Context ctx;
NewGraveActivity app;
public ExpandableAdapter(List<GroupCat> catList, Context ctx, NewGraveActivity app) {
this.catList = catList;
this.ctx = ctx;
this.app = app;
}
@Override
public Object getGroup(int groupPosition) {
return catList.get(groupPosition);
}
@Override
public int getGroupCount() {
Log.d("ExAdapter getGroupCount", "" + catList.size());
return catList.size();
}
@Override
public long getGroupId(int groupPosition) {
return catList.get(groupPosition).hashCode();
}
@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
Log.d("ExAdapter getGroupView", "Start");
View v = convertView;
if (v == null) {
LayoutInflater inflater = (LayoutInflater)ctx.getSystemService
(Context.LAYOUT_INFLATER_SERVICE);
v = inflater.inflate(R.layout.group_layout, parent, false);
}
TextView groupName = (TextView) v.findViewById(R.id.groupName);
GroupCat cat = catList.get(groupPosition);
groupName.setText(cat.getGroupName());
return v;
}
@Override
public Object getChild(int groupPosition, int childPosition) {
return catList.get(groupPosition).getItemList().get(childPosition);
}
@Override
public long getChildId(int groupPosition, int childPosition) {
return catList.get(groupPosition).getItemList().get(childPosition).hashCode();
}
@Override
public View getChildView(final int groupPosition, int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
Log.d("ExAdapter getChildView", "Start");
View v = convertView;
if (v == null) {
LayoutInflater inflater = (LayoutInflater)ctx.getSystemService
(Context.LAYOUT_INFLATER_SERVICE);
v = inflater.inflate(R.layout.item_layout, parent, false);
}
CheckBox itemCheck = (CheckBox) v.findViewById(R.id.itemCheck);
TextView itemName = (TextView) v.findViewById(R.id.itemName);
if (app.selected.containsKey((groupPosition))==true)
itemCheck.setChecked(true);
else
itemCheck.setChecked(false);
Category child = catList.get(groupPosition).getItemList().get(childPosition);
Log.d("ExAdapter getChildView", child.getName());
itemName.setText(child.getName());
itemCheck.setOnCheckedChangeListener(new CheckListener(childPosition, app));
return v;
}
@Override
public int getChildrenCount(int groupPosition) {
int size = catList.get(groupPosition).getItemList().size();
System.out.println("number of children for group ["+groupPosition+"] is ["+size+"]");
return size;
}
}
组布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/groupName"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="15dip" />
<TextView
android:id="@+id/groupDescr"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="8dip" />
</LinearLayout>
项目布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<CheckBox
android:id="@+id/itemCheck"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/itemName"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
用 exp 布局。 ListView :
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ExpandableListView
android:id="@+id/expandableListView1"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_marginTop="10dp" >
</ExpandableListView>
<Button
android:id="@+id/buttonNewGrave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/buttonNewGrave" />
</LinearLayout>
</ScrollView>
最佳答案
第一件事:您不应该在 ScrollView 中使用任何滚动组件,例如可扩展列表,这就是为什么 Listview inside ScrollView is not scrolling on Android .
第二件事:ExpandableListView 的高度应该是 match_parent。在您的情况下,您在线性布局中采用了高度为 wrap_content 的 Expandable ListView,将其更改为 match_parent。
我遇到了同样的问题,我按照同样的方法解决了这个问题。
关于android - 适配器不调用 getChildView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20662647/
我正在制作一个包含自定义 ExpandableListView 适配器的菜单。尽管试图使我的代码尽可能接近 API 示例和我在网上看到的任何其他示例(包括多个密切相关的 SO 问题),但我仍然无法让它
我不得不承认我是 Android 的新手,我的 ExpandableListView 给我带来了很多麻烦。我认为是适配器工作不正常。我正在使用一个扩展 BaseExpandableListAdapte
我有一个 expandableListView 并试图像那样改变它的 child : ((SubItem) adapter.getChild(i+1, 5)).setCount(unreadBox);
在我的应用程序中,ExpandableListAdapter 中的 getChildView() 没有被调用,而适配器返回正确的子计数(当 getChildrenCount()被调用)。我的问题是;
我根据许多教程和来自 SO 的一些错误问题制作了一个 ExpandableListView。父列表由两个 TextView 和一个具有标准布局的 ImageButton 组成。子列表由单个 TextV
在我正在构建的应用程序中,有一个 ListView ,实际上是一个带有子列表的可扩展 ListView - 并且有两种情况,具体取决于单击的组列表项:有时有一个子列表项,有时有两个子列表项.当单击包含
我在可扩展 ListView “减号”和“加号”的 subview 中有两个按钮。我只需要增加变量的计数(比如 int count=0)。如果我将此变量保留在适配器的全局变量上,它将对组项的所有子项采
我在 ExpandableListView 的一个子项中有 Edittext。在 EditText 中,当单击键盘中的完成按钮时,会自动调用 getChildView。如何避免这种情况。另外我想知道为
我有一个包含 2 个页面的 Viewpager,在第 1 页我填写了一个表单并滑动到第 2 页,其中包含 expandableList,我正在使用如下自定义适配器. 我在布局中包含了可扩展的 list
我有 2 组来自 API 的数据,每组都有 7 个对象,我试图在 GridView 中显示这些对象,因此我有一个可扩展的 ListView ,其中包含 2 组,每组有 7 个对象。问题是,当我运行该应
我正在研究 BaseExpandableListAdapter 的扩展,并具有以下 getChildView() 的实现: public View getChildView(int groupPosi
我正在创建一个包含可扩展 ListView 的应用程序。 subview 是动态创建的。它运行成功。在调试过程中,我发现 getChildview 函数运行了 2 次。 我创建动态布局并将其放入列表中
我正在尝试访问 GroupView 的 TextView ,它显示了 ChildView 中所选复选框的计数。 例如 - North 是 GroupView ,下面带有复选框的列表是 ChildVie
我是一名优秀的程序员,十分优秀!