在做三级列表的时候,用的是ExpandableListView里套一个ExpandableListView,由于里面的ExpandableListView把图标隐藏了……点又点不开,就以为是里面的ExpandableListView失效,弄了三小时,才想到把图标显示出来,,结果……已经打开了,郁闷得要死了,,,然后知道是因为没有位置的原因了……哎,,记下,别以后还杨白劳三个小时……
public class EGuideFourAdapter extends BaseExpandableListAdapter { private Context mContext; private List<NamedList> list; public EGuideFourAdapter(Context context, List<NamedList> list) { this.list = list; this.mContext = context; } @Override public Object getChild(int groupPosition, int childPosition) { // TODO Auto-generated method stub return list.get(groupPosition).getChildList().get(childPosition); } @Override public long getChildId(int groupPosition, int childPosition) { // TODO Auto-generated method stub return childPosition; } static public TextView getTextView(Context context) {// 控制所有级的菜单,如果各级有另外设置,实现的是另外的设置。 AbsListView.LayoutParams lp = new AbsListView.LayoutParams( ViewGroup.LayoutParams.FILL_PARENT, 90); TextView textView = new TextView(context); textView.setLayoutParams(lp); textView.setTextSize(17); textView.setTextColor(Color.BLACK); textView.setPadding(10, 5, 0, 5); textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT); return textView; } /** * 三层树结构中的第二层是一个ExpandableListView */ public View getChildView(final int groupPosition, final int childPosition, boolean isLastChild, View convertView, ViewGroup parent) { if (list.get(groupPosition).getChildList().get(childPosition) .getChildList().size() > 0) {// 该项是否有第三级 // 是 final ExpandableListView examGuidView = getExpandableListView(); examGuidView.setGroupIndicator(null); examGuidView.setPadding(pixelsToDip(mContext,25), 0, 0, 0); final ExamGuideAdapter examGuideAdapter = new ExamGuideAdapter( this.mContext, list.get(groupPosition).getChildList()); // list.get(groupPosition).getChildList()为第二级的list examGuidView.setAdapter(examGuideAdapter); // 点击第三级时, examGuidView.setOnChildClickListener(new OnChildClickListener() { @Override public boolean onChildClick(ExpandableListView parent, View v, int groupPositionTwo, int childPosition, long id) { // 获取第四级列表项 List<NamedList> eGlist = list.get(groupPosition) .getChildList().get(groupPositionTwo) .getChildList().get(childPosition).getChildList(); // 获取第三级标题 String title = list.get(groupPosition).getChildList() .get(groupPositionTwo).getChildList() .get(childPosition).getName(); if (eGlist.size() > 0) {// 第四级不是详细内容 Intent intent = new Intent(mContext, UIExamGuideFour.class); intent.putExtra("list", (Serializable) eGlist); intent.putExtra("title", title); mContext.startActivity(intent); } else { Intent intent = new Intent(mContext, UIExamGuideContent.class); intent.putExtra("title", title); mContext.startActivity(intent); } return false; } }); /** * 重点:没有这个方法第三级会没有位置,所以会看不到,误以为ExpandableListView失效 * 关键点:第二级菜单展开时通过取得节点数来设置第三级菜单的大小 */ examGuidView.setOnGroupExpandListener(new OnGroupExpandListener() { int i = 0; @Override public void onGroupExpand(int groupPosition) { i = (list.get(groupPosition).getChildList() .get(childPosition).getChildList().size() + 1) * 90 + 30; AbsListView.LayoutParams lp = new AbsListView.LayoutParams( ViewGroup.LayoutParams.FILL_PARENT, i); examGuidView.setLayoutParams(lp); } }); /** * 第二级菜单回收时设置为标准Item大小 */ examGuidView .setOnGroupCollapseListener(new OnGroupCollapseListener() { @Override public void onGroupCollapse(int groupPosition) { AbsListView.LayoutParams lp = new AbsListView.LayoutParams( ViewGroup.LayoutParams.FILL_PARENT, 90); examGuidView.setLayoutParams(lp); } }); return examGuidView; } else { TextView textView = getTextView(mContext); ExamGuide named = (ExamGuide) list.get(groupPosition) .getChildList().get(childPosition); textView.setTextColor(Color.BLACK); textView.setText(named.getName()); // textView.setTag(temp[1]); // textView.setText(getChild(groupPosition, // childPosition).toString()); textView.setPadding(pixelsToDip(mContext,55), 0, 0, 0);// 第一个参数原来为: // myPaddingLeft+PaddingLeft // ,是设置第三级菜单文字离左边的距离。 return textView; } } public ExpandableListView getExpandableListView() { AbsListView.LayoutParams lp = new AbsListView.LayoutParams( ViewGroup.LayoutParams.FILL_PARENT, 90); ExpandableListView superTreeView = new ExpandableListView(mContext); superTreeView.setLayoutParams(lp); return superTreeView; } public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) { TextView textView = getTextView(mContext); ExamGuide named = (ExamGuide) list.get(groupPosition); textView.setText(named.getName()); textView.setPadding(pixelsToDip(mContext,40), 0, 0, 0);// 第一个参数原来为:myPaddingLeft+(PaddingLeft>>1) // ,是设置第二级菜单文字离左边的距离。 textView.setTextColor(Color.BLACK); return textView; } //像素转dip解决分辨率问题 private int pixelsToDip(Context context,int Pixels) { int dip=(int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, Pixels, context.getResources().getDisplayMetrics()); return dip; } /** * 第二级点击打开第三级 * * @param examGuidView * @param groupPosition */ public void clickEvent(ExpandableListView examGuidView, int groupPosition) { examGuidView.expandGroup(groupPosition); } @Override public int getChildrenCount(int groupPosition) { // TODO Auto-generated method stub return list.get(groupPosition).getChildList().size(); } @Override public Object getGroup(int groupPosition) { // TODO Auto-generated method stub return list.get(groupPosition); } @Override public int getGroupCount() { // TODO Auto-generated method stub return list.size(); } @Override public long getGroupId(int groupPosition) { // TODO Auto-generated method stub return groupPosition; } @Override public boolean hasStableIds() { // TODO Auto-generated method stub return false; } @Override public boolean isChildSelectable(int p, int id) { // TODO Auto-generated method stub return true; }
相关推荐
在这个“android ExpandableListView三级菜单的使用”示例中,我们将深入探讨如何创建并操作一个支持三级菜单的`ExpandableListView`。 首先,`ExpandableListView`是`ListView`的扩展,它提供了更丰富的功能,可以...
在Android开发中,`ExpandableListView`是一种常用的控件,用于展示可以展开和折叠的列表,通常用于构建具有层级结构的数据展示,例如树形目录。在这个案例中,我们讨论的是如何利用`ExpandableListView`创建一个...
在这个"Android ExpandableListView双层嵌套实现三级树形菜单"的例子中,我们将深入探讨如何通过扩展这个控件来创建一个包含三层结构的树形菜单。 首先,我们要理解ExpandableListView的基本工作原理。...
CommentWithReplyView-master 基于ExpandableListView实现评论和回复的功能。 > 说明 ...处理了NestedScrollView、ExpandableListView和CoordinatorLayout的嵌套问题 点击某条评论,即可@ta进行回复
在Android开发中,`ExpandableListView`是一种常用的控件,它扩展了标准的`ListView`功能,允许子项可以被展开或折叠,呈现层次结构的数据。这个控件非常适合用来展示具有树状结构的信息,比如菜单、目录或者组织...
### Android之ExpandableListView知识点详解 #### 一、ExpandableListView简介 `ExpandableListView`是Android中一种特殊的列表视图组件,它是`ListView`的一个子类,主要用于展示层级结构的数据,例如联系人分组...
在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和折叠分组,每个分组下可以包含多个子项。这种控件在显示层次结构数据时非常实用。`CheckBox`则是另一种常见的组件,用于让用户进行多选...
总之,三级伸缩列表在Android开发中是一种强大的工具,通过理解其工作原理,定制适配器,优化性能,可以创建出功能强大且用户体验良好的层级数据展示界面。这个压缩包文件"ExpandableListView"可能包含了实现三级...
下面我们将深入探讨如何在Android应用中实现`ExpandableListView`的二级列表效果。 首先,我们要理解`ExpandableListView`的基本概念。它是由多个组(Group)组成,每个组内包含多个子项(Child)。当用户点击一个...
在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和折叠子项,从而实现层次化的数据展示。这种控件非常适合用来展示具有树状结构的数据,例如菜单、目录或者组织结构等。本篇文章将深入探讨...
Android实现自定义适配器的ExpandableListView示例,准备一级列表中显示的数据:2个一级列表,分别显示"group1"和"group2",准备第一个一级列表中的二级列表数据:两个二级列表,分别显示"childData1"和"childData2",...
总结来说,`ExpandableListView`是Android中处理层次数据的重要组件,这个项目通过实例展示了如何创建并使用它来实现二级列表的功能。通过学习这个项目,开发者可以掌握`ExpandableListView`的使用,提升在Android...
在Android开发中,ExpandableListView是一种可扩展的列表视图,它可以包含多个子项,非常适合用来展示层次结构的数据。在本项目"Android 扩展 带CheckBox的expandableListview"中,开发者针对ExpandableListView进行...
ExpandableListView是Android中的一种视图组件,用于显示二级列表的数据。它可以将数据分组显示,方便用户浏览和操作。下面我们来详细介绍如何使用ExpandableListView实现二级列表购物车。 首先,我们需要在布局...
在Android开发中,`ExpandableListView`是一种常用的控件,它可以展示可展开和折叠的列表,通常用于构建具有层级结构的数据展示,例如一级菜单和二级菜单的级联效果。本篇将详细介绍如何在Android应用中使用`...
在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和折叠不同的组,每个组下还可以包含多个子项,非常适合用于显示层次结构的数据。在这个项目中,我们看到的是一个集成下拉刷新功能的`...
在Android开发中,`ExpandableListView`是一种常用的控件,它允许我们展示具有层次结构的数据,比如一个多级菜单分类的场景。在这个例子中,我们将会深入探讨如何利用`ExpandableListView`来创建一个可展开和折叠的...
在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和折叠分组,每个分组下可以包含多个子项。这种控件在显示层次结构数据时非常实用,比如目录结构、菜单或者组织架构等。本示例将详细介绍...