android 支持分组和联系人展示的一个小例子

先看效果图:

要实现这个效果,activity必须实现ExpandableListActivity

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		requestWindowFeature(Window.FEATURE_NO_TITLE);
		setContentView(R.layout.main);
		mContactListView = getExpandableListView();
		mContactListView.setBackgroundResource(R.drawable.default_bg);
		registerForContextMenu(mContactListView);
		mContactDataBase = ((ContactApplication) getApplication())
				.getmContactDataBase();

		getExpandableListView().setCacheColorHint(0);// 拖动时避免出现黑色
		getExpandableListView().setDivider(null);// 去掉每项下面的黑线(分割线)
		// 自定义下拉图标
		getExpandableListView().setGroupIndicator(
				getResources().getDrawable(R.drawable.expander_ic_folder));
		setAdatperForExpandableListView();
	}

	/**
	 * 设置ExpandableListView的adapter
	 */
	private void setAdatperForExpandableListView() {
		Cursor groupCursor = mContactDataBase.getAllGroups();  //这个是从数据库里查询出所有的组
		Util.d(TAG, "groupCursor=" + groupCursor);
		// curosr的生命周期将和activity有关
		startManagingCursor(groupCursor);

		// set my adapter
		<strong>ContactTreeAdapter </strong>contactTreeAdapter = new ContactTreeAdapter(
				groupCursor, this, true, mContactDataBase);
		setListAdapter(contactTreeAdapter);
	}

主要实现ContactTreeAdapter这个adapter

public class ContactTreeAdapter extends CursorTreeAdapter {

	/** log tag. */
	private static final String TAG = "ContactTreeAdapter";

	/** context */
	public Context mContext = null;
	private Cursor mCursor = null;

	private ContactDataBase mContactDataBase;

	// contact表字段索引
	private static final int INDEX_NAME = 1;
	private static final int INDEX_PHONENUMBER = 2;

	// group表字段索引
	private static final int INDEX_GROUPNAME = 1;

	public ContactTreeAdapter(Cursor cursor, Context context,
			boolean autoRequery, ContactDataBase contactDataBase) {
		super(cursor, context, autoRequery);
		mContext = context;
		this.mContactDataBase = contactDataBase;
		// TODO Auto-generated constructor stub
	}

	@Override
	protected Cursor getChildrenCursor(Cursor groupCursor) {
		// TODO Auto-generated method stub
		String groupName = groupCursor.getString(INDEX_GROUPNAME);// 得到当前的组名
		Cursor childCursor = mContactDataBase.getContactsByGroupName(groupName);
		return childCursor;
	}

	@Override
	protected View newGroupView(Context context, Cursor cursor,
			boolean isExpanded, ViewGroup parent) {
		// TODO Auto-generated method stub
		Util.d(TAG, "newGroupView");
		LayoutInflater inflate = LayoutInflater.from(mContext);
		View view = inflate.inflate(R.layout.grouplayout, null);
		bindGroupView(view, context, cursor, isExpanded);
		return view;

	}

	@Override
	protected void bindGroupView(View view, Context context, Cursor cursor,
			boolean isExpanded) {
		// TODO Auto-generated method stub
		Util.d(TAG, "bindGroupView");
		TextView groupName = (TextView) view.findViewById(R.id.groupName);
		String group = cursor.getString(INDEX_GROUPNAME);
		groupName.setText(group);

		TextView groupCount = (TextView) view.findViewById(R.id.groupCount);
		int count = mContactDataBase.getCountContactByGroupName(group);
		Util.d(TAG, "count=" + count + "group=" + group);
		groupCount.setText("[" + count + "]");
	}

	@Override
	protected View newChildView(Context context, Cursor cursor,
			boolean isLastChild, ViewGroup parent) {
		// TODO Auto-generated method stub
		Util.d(TAG, "newChildView");
		LayoutInflater inflate = LayoutInflater.from(mContext);
		View view = inflate.inflate(R.layout.childlayout, null);
		bindChildView(view, context, cursor, isLastChild);
		return view;
	}

	@Override
	protected void bindChildView(View view, Context context, Cursor cursor,
			boolean isLastChild) {
		// TODO Auto-generated method stub
		Util.d(TAG, "bindChildView cursor.getString(INDEX_PHONENUMBER)="
				+ cursor.getString(INDEX_PHONENUMBER));
		TextView name = (TextView) view.findViewById(R.id.name);
		name.setText(cursor.getString(INDEX_NAME));

		TextView description = (TextView) view.findViewById(R.id.description);
		description.setTextKeepState(cursor.getString(INDEX_PHONENUMBER));
	}

}<strong>
</strong>

因为这个adapter的函数命名就可以看出是干什么的就不一一解释了

代码可以在http://download.csdn.net/detail/baidu_nod/7684649下载

android 支持分组和联系人展示的一个小例子

时间: 2024-10-19 04:23:08

android 支持分组和联系人展示的一个小例子的相关文章

Spring.Net在ASP.NET Mvc里使用的一个小例子

就贴个小例子,就不注意格式了. 1.下载dll NuGet的下载地址:http://docs.nuget.org/docs/start-here/installing-nuget 在vs的NuGet里搜索spring.web.mvc,它会自动下载SpringNet的引用包. 安装完成之后你的项目会多三个引用,项目目录../packages文件夹下面也会多出这三个文件夹里面是SpringNet的文件. 2.写代码例子 很简单的例子.定义一个接口,一个对于接口的实现类. namespace MvcA

从一个小例子认识SQL游标

原文:从一个小例子认识SQL游标 1    什么是游标: 关系数据库中的操作会对整个行集起作用. 例如,由 SELECT 语句返回的行集包括满足该语句的 WHERE 子句中条件的所有行. 这种由语句返回的完整行集称为结果集. 应用程序,特别是交互式联机应用程序,并不总能将整个结果集作为一个单元来有效地处理. 这些应用程序需要一种机制以便每次处理一行或一部分行. 游标就是提供这种机制的对结果集的一种扩展. 游标通过以下方式来扩展结果处理: 允许定位在结果集的特定行. 从结果集的当前位置检索一行或一

倒计时CountDownTimer的一个小例子

在网上看到一个小例子,练习后总结如下: 首先,布局文件中仅包含一个文本框.main.xml代码如下: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layou

java操作xml的一个小例子

最近两天公司事比较多,这两天自己主要跟xml打交道,今天更一下用java操作xml的一个小例子. 原来自己操作xml一直用这个包:xstream-1.4.2.jar.然后用注解的方式,很方便,自己只要定义好bean的层次结构就可以了,第三方包会自动生成和解析xml. 但是今天发现,这个包有两个问题: 一个是比较复杂(我是菜鸟,求别喷,我真的觉得他挺复杂的..).比如说你要想处理既有属性又有值的xml就比较麻烦.(@XStreamConverter注解这种方法报这个错:com.thoughtwor

java连接mysql的一个小例子

想要用java 连接数据库,需要在classpath中加上jdbc的jar包路径 在eclipse中,Project的properties里面的java build path里面添加引用 连接成功的一个小例子数据库如下如 代码 package query; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; impor

puppet运行慢的一个小例子

一个小例子来看下怎么debug puppet运行慢的问题. 一个小例子来看下怎么debug puppet运行慢的问题. 发现一台机器的agent运行比较缓慢,首先看下puppet server的整体性能: puppet server使用了passenger+nginx的结构,性能比较稳定,接入1200台机器左右,passenger类似于php-fpm,可以设定启动的处理进程数等参数,用来调整server的性能. 比如参数passenger_max_pool_size,这个值的设置需要考虑两个因素

javascript 利用 - 枚举思想 - 添加地名的一个小例子

利用枚举思想来添加地名,主要功能是:判断点击a标签(即当前的地名)如果在ul的li不存在的话那么就添加,有则不添加,而且还提供了相应的排序功能... HTML代码: <div id="china"> <a href="javascript:;">广州</a> <a href="javascript:;">深圳</a> <a href="javascript:;"

一个小例子对多态简单的理解

class Parent{ int age; String name; public Parent(String name, int age){ this.name = name; this.age = age; } public void writeWay(){ System.out.println("毛笔!"); } } class Child extends Parent{ int age; String name;//这里只说为了说明一个问题,其实完全可以有父类继承而来. pu

Log4net的一个小例子

最近想学习下log4net,写了个很简短的使用例子.用少的代码,可以保证程序运行起来. 配置文件: <configSections> <section name="log4net" type="System.Configuration.IgnoreSectionHandler" /> </configSections> <log4net> <appender name="LogFileAppender&