ExpListActivity.java:
package org.lee.android; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import android.app.Activity; import android.os.Bundle; import android.widget.ExpandableListView; public class ExpListActivity extends Activity { private ExpandableListView elistview; private List<Map<String, Object>> mData; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.exp_listview); mData = getData(); elistview = (ExpandableListView) findViewById(R.id.elist); //这里要把系统自带的图标去掉 elistview.setGroupIndicator(null); elistview.setAdapter(new MyElistAdapter(this,mData)); // elistview.setChildDivider(null); // elistview.setDivider(null); } private List<Map<String, Object>> getData() { List<Map<String, Object>> list = new ArrayList<Map<String, Object>>(); List<Map<String, Object>> clist = new ArrayList<Map<String, Object>>(); Map<String, Object> map = new HashMap<String, Object>(); Map<String, Object> cmap = new HashMap<String, Object>(); cmap.put("cname", "安庆市"); clist.add(cmap); cmap = new HashMap<String, Object>(); cmap.put("cname", "合肥市"); clist.add(cmap); cmap = new HashMap<String, Object>(); cmap.put("cname", "池州市"); clist.add(cmap); cmap = new HashMap<String, Object>(); cmap.put("cname", "宿州市"); clist.add(cmap); map.put("gname", "安徽省"); map.put("clist", clist); list.add(map); clist = new ArrayList<Map<String, Object>>(); map = new HashMap<String, Object>(); cmap = new HashMap<String, Object>(); cmap.put("cname", "南京市"); clist.add(cmap); cmap = new HashMap<String, Object>(); cmap.put("cname", "镇江市"); clist.add(cmap); cmap = new HashMap<String, Object>(); cmap.put("cname", "徐州市"); clist.add(cmap); map.put("gname", "江苏省"); map.put("clist", clist); list.add(map); clist = new ArrayList<Map<String, Object>>(); map = new HashMap<String, Object>(); cmap = new HashMap<String, Object>(); cmap.put("cname", "武汉市"); clist.add(cmap); cmap = new HashMap<String, Object>(); cmap.put("cname", "黄冈市"); clist.add(cmap); cmap = new HashMap<String, Object>(); cmap.put("cname", "宜昌市"); clist.add(cmap); map.put("gname", "湖北省"); map.put("clist", clist); list.add(map); return list; } }
MyElistAdapter.java:
package org.lee.android; import java.util.List; import java.util.Map; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseExpandableListAdapter; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.RelativeLayout; import android.widget.TextView; public class MyElistAdapter extends BaseExpandableListAdapter { // 分组数据 // private String[] group = { "A组", "B组", "C组", "D组" }; // private String[][] child = { { "A01", "A02", "A03" }, // { "B01", "B02", "B03" }, { "C01", "C02", "C03" }, // { "D04", "D05", "D06" } }; private Context mContext; private List<Map<String, Object>> glist; public MyElistAdapter(Context mContext,List<Map<String, Object>> glist) { super(); this.mContext = mContext; this.glist=glist; } @Override public int getGroupCount() { return glist.size(); } @SuppressWarnings("unchecked") @Override public int getChildrenCount(int groupPosition) { List<Map<String, Object>> clist=(List<Map<String, Object>>) glist.get(groupPosition).get("clist"); return clist.size(); } @Override public Object getGroup(int groupPosition) { return glist.get(groupPosition).get("gname"); } @SuppressWarnings("unchecked") @Override public Object getChild(int groupPosition, int childPosition) { List<Map<String, Object>> clist=(List<Map<String, Object>>) glist.get(groupPosition).get("clist"); return clist.get(childPosition).get("cname"); } @Override public long getGroupId(int groupPosition) { return groupPosition; } @Override public long getChildId(int groupPosition, int childPosition) { return childPosition; } @Override public boolean hasStableIds() { return true; } @Override public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) { // 实例化布局文件 RelativeLayout glayout = (RelativeLayout) LayoutInflater.from(mContext) .inflate(R.layout.group_layout, null); ImageView iv = (ImageView) glayout.findViewById(R.id.giv); // 判断分组是否展开,分别传入不同的图片资源 if (isExpanded) { iv.setImageResource(R.drawable.shop_cart_cut); } else { iv.setImageResource(R.drawable.shop_cart_plus); } TextView tv = (TextView) glayout.findViewById(R.id.gtv); tv.setText(this.getGroup(groupPosition).toString()); return glayout; } @Override public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) { // 实例化布局文件 LinearLayout clayout = (LinearLayout) LayoutInflater.from(mContext) .inflate(R.layout.child_layout, null); TextView tv = (TextView) clayout.findViewById(R.id.ctv); tv.setText(getChild(groupPosition, childPosition).toString()); return clayout; } @Override public boolean isChildSelectable(int groupPosition, int childPosition) { return true; } }
exp_listview.xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="#ffffff"> <ExpandableListView android:id="@+id/elist" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#ffffff" /> </LinearLayout>
group_layout.xml:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/grlayout" android:layout_width="match_parent" android:layout_height="50dp" android:background="#ffffff" android:orientation="horizontal"> <TextView android:id="@+id/gtv" android:layout_width="wrap_content" android:layout_height="40dp" android:paddingLeft="20dp" android:gravity="center_vertical" android:layout_centerVertical="true" android:textColor="#000000" /> <ImageView android:id="@+id/giv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:paddingRight="10dp" android:src="@drawable/shop_cart_plus" /> </RelativeLayout>
child_layout.xml:
<?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="wrap_content" android:orientation="horizontal" android:background="#ffffff" android:paddingLeft="30dp" > <ImageView android:id="@+id/civ" android:layout_height="wrap_content" android:layout_width="wrap_content" android:src="@drawable/icon_gcoding" android:padding="5dp" /> <TextView android:id="@+id/ctv" android:layout_height="wrap_content" android:layout_width="wrap_content" android:padding="5dp" android:textColor="#000000" /> </LinearLayout>
相关推荐
在Android开发中,`ExpandableListView`是一种常用的控件,它扩展了标准的`ListView`功能,允许子项可以被展开或折叠,呈现层次结构的数据。这个控件非常适合用来展示具有树状结构的信息,比如菜单、目录或者组织...
在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和折叠不同的组,每个组下还可以...通过学习这个案例,开发者可以提升对Android UI组件和数据操作的理解,为构建更复杂的交互式应用打下基础。
你可以根据这些文件进一步了解和学习如何实现`ExpandableListView`与`GridView`的嵌套使用。 通过这样的方式,开发者能够构建出更为复杂和灵活的用户界面,有效地展示层次结构中的数据,同时保持良好的用户体验。这...
在Android应用开发中,`ExpandableListView`是一个非常实用的组件,它允许用户展示具有层级结构的数据,非常适合用于实现评论和回复的展示功能。...不断学习和实践,你的Android开发技能会越来越熟练。
通过分析和实践这个项目,开发者不仅可以掌握`ExpandableListView`的使用,还能学习到EditText焦点管理技巧以及如何利用二阶贝塞尔曲线创建动画,这些技能对于提升Android应用的交互性和用户体验都非常有价值。
在Android开发中,`ExpandableListView`是一种常用的控件,用于展示可以展开和折叠的列表,通常用于构建具有层级结构的数据展示...对于初学者来说,这是一个很好的学习项目,有助于提升对Android界面和数据管理的理解。
在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和...通过阅读和理解`TypeTest`中的代码,开发者可以学习到如何有效地利用`ExpandableListView`来展示层次结构数据,并实现特定的交互行为。
在Android开发中,ExpandableListView是一个非常实用的控件,常用于实现多级菜单或分类展示数据。这个项目示例提供了这样一个功能,适用于毕业设计、论文编写或移动应用开发的学习。下面将详细介绍...
在Android开发中,`ExpandableListView`是一种常用的控件,它可以展示可展开和折叠的列表,非常适合用于构建具有层级结构的数据展示。在这个场景下,我们用`ExpandableListView`来实现一个时间轴的效果,这对于展示...
通过分析和学习这个项目,开发者可以了解到如何在实际项目中运用ExpandableListView来实现一个功能完备、交互良好的购物车页面。这有助于提升Android应用开发技能,特别是对于处理复杂数据结构和交互设计的能力。
在Android开发中,ExpandableListView是一个非常实用的原生控件,它允许用户展示...这个案例是一个很好的学习资源,可以帮助你掌握如何在实际项目中利用ExpandableListView控件,特别是处理一些特殊交互需求时的技巧。
在Android开发中,`ExpandableListView`是一种常用的控件,它允许我们展示具有层次结构的数据,比如一个多级菜单分类的场景。在这个例子中,我们将会深入探讨如何利用`ExpandableListView`来创建一个可展开和折叠的...
通过深入理解以上知识点,并结合提供的源码进行学习和实践,你可以熟练掌握在Android应用中使用自定义适配器实现`ExpandableListView`的方法,为用户提供更丰富的交互体验。记得在实际项目中根据需求调整和优化代码...
本项目是关于如何在Android应用中实现一个基于自定义适配器的`ExpandableListView`。适配器是连接数据源与UI控件的关键,通过自定义适配器,我们可以灵活地定制每个子项的显示样式和行为。 首先,`...
在Android开发中,`ExpandableListView`和`PopupWindow`是两种常见的UI组件,它们各自在不同的场景下发挥着重要作用。`ExpandableListView`用于展示层次结构的数据,而`PopupWindow`则是一种轻量级的弹出窗口,常...
在Android应用开发中,"ExpandableListView实现Android购物车"是一个常见的需求,它涉及到用户界面设计、数据管理和交互。ExpandableListView是Android SDK提供的一种视图组件,用于展示可展开和折叠的列表,非常...
在Android开发中,有时我们需要创建一个可展开和折叠的列表,以展示层次结构的数据,比如模仿QQ的好友分组功能。...这个例子不仅展示了基本用法,还提供了实际代码参考,对于学习和实践Android UI设计非常有帮助。
在Android开发中,ExpandableListView是一种常用的控件,它允许用户展开和折叠多个层次的数据,非常适合展示具有层级结构的信息。而“侧滑删除”功能则是近年来流行的一种交互设计,让用户可以方便地通过滑动列表项...
在Android开发中,`...通过学习和理解这个实例,开发者可以掌握`ExpandableListView`的基本用法,包括数据绑定、事件处理以及性能优化,这对于开发复杂的Android应用,特别是需要展示层次结构信息的场景非常有用。
在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和折叠分组,使得数据层次结构更加清晰。这个"ExpandableListView示例"是为了帮助开发者理解和实现这种功能,特别是对于处理多级分类的数据...