-
android联系人带字母检索源码
android联系人带字母检索源码/** * 联系人列表适配器。 * * @author guolin */public class ContactAdapter extends ArrayAdapter { /** * 需要渲染的item布局文件 */ private int resource; /** * 字母表分组工具 */ private SectionIndexer mIndexer; public ContactAdapter(Context context, int textViewResourceId, List objects) { super(context, textViewResourceId, objects); resource = textViewResourceId; } @Override public View getView(int position, View convertView, ViewGroup parent) { Contact contact = getItem(position); LinearLayout layout = null; if (convertView == null) { layout = (LinearLayout) LayoutInflater.from(getContext()).inflate(resource, null); } else { layout = (LinearLayout) convertView; } TextView name = (TextView) layout.findViewById(R.id.name); LinearLayout sortKeyLayout = (LinearLayout) layout.findViewById(R.id.sort_key_layout); TextView sortKey = (TextView) layout.findViewById(R.id.sort_key); name.setText(contact.getName()); int section = mIndexer.getSectionForPosition(position); if (position == mIndexer.getPositionForSection(section)) { sortKey.setText(contact.getSortKey()); sortKeyLayout.setVisibility(View.VISIBLE); } else { sortKeyLayout.setVisibility(View.GONE); } return layout; } /** * 给当前适配器传入一个分组工具。 * * @param indexer */ public void setIndexer(SectionIndexer indexer) { mIndexer = indexer; }}
- 2014-04-13下载
- 积分:1
-
android widget小部件开发实例源码下载
android widget小部件开发实例源码下载
- 2014-09-04下载
- 积分:1
-
log4forAndroid 日志记录实例
Log4j log4 For android 日志记录例子
- 2014-09-17下载
- 积分:1
-
java 读写excel 示例代码
java 读写excel 示例代码
- 2015-04-25下载
- 积分:1
-
android 高仿微信5.0版主界面UI效果 示例源码
android 高仿微信5.0版主界面UI效果 拷贝到eclipse即可运行 (微信5.0版本)
- 2014-02-28下载
- 积分:1
-
autojs支付宝自动偷能量
autojs支付宝自动偷能量
- 2020-11-04下载
- 积分:1
-
学习
学习
- 2013-09-02下载
- 积分:1
-
android 高仿新浪微博源码下载(含侧边栏滑动效果)
实现了新浪微博的 登陆、注册、分享等功能
- 2015-05-21下载
- 积分:1
-
android wifi 直连 文件传输例子源码下载
android wifi 直连 文件传输例子源码下载
- 2015-01-06下载
- 积分:1
-
基于stm32的室内环境监测系统设计及实现
用STM32f103zet6单片机做的室内环境监测系统,用到了LCD显示屏,光敏传感器,火焰传感器,红外遥控,烟雾传感器,高感度声音传感器,DHT11温湿度传感器等多个传感器模块综合,
- 2020-05-26下载
- 积分:1