登录
首页 » Java » android联系人带字母检索源码

android联系人带字母检索源码

于 2014-04-13 发布
0 148
下载积分: 1 下载次数: 0

代码说明:

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; }}

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论


0 个回复

  • [安卓源]Image(图片处理,放大,旋转,清晰度。。。。效果)
    [安卓开源]Image(图片处理,放大,旋转,清晰度。。。。效果)
    2015-03-18下载
    积分:1
  • Android 闪光灯,手电筒使用 例子源码
    Android 闪光灯,手电筒使用 例子源码
    2014-11-03下载
    积分:1
  • android 对话框实例
    android 对话框实例
    2014-08-21下载
    积分:1
  • android 百度地图api 示例源码
    android 百度地图api 示例源码
    2014-02-25下载
    积分:1
  • Zxing二维码扫描android app源码
    Zxing二维码扫描实例可使用于安卓手机或安卓PDA,扫描速度超快
    2021-05-06下载
    积分:1
  • 疯狂Android讲义(第2版)》.(李刚)源代码
    疯狂Android讲义(第2版)》.(李刚)源代码
    2015-03-15下载
    积分:1
  • android 短信拦截 实例完整源码下载
    可实现拦截短信,自动转发的功能。 部分代码:import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Context;import android.content.Intent;import android.content.IntentFilter;import android.os.IBinder;import android.os.PowerManager;import android.os.PowerManager.WakeLock;public class MyService extends Service{ SMSReceiver rs=null; static MyService service; private static PendingIntent pi = null; public static AlarmManager am = null; @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); service=this; pm = (PowerManager) getSystemService(Context.POWER_SERVICE); registerAlarm(); acquireWakeLock(this); registerRecever(); } @Override public void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); releaseWakeLock(); unregisterAlarm(); } private void registerRecever(){ rs=new SMSReceiver(); IntentFilter filter=new IntentFilter(); filter.addAction("android.provider.Telephony.SMS_RECEIVED"); filter.setPriority(1000); registerReceiver(rs, filter); } @Override public int onStartCommand(Intent intent, int flags, int startId) { // TODO Auto-generated method stub if(rs==null)registerRecever(); return START_STICKY; } public static WakeLock wakeLock = null; private static PowerManager pm = null; public static synchronized void acquireWakeLock(Context c) { if (null == wakeLock) { wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "smslock"); wakeLock.acquire(); } } public static synchronized void releaseWakeLock() { if (wakeLock == null) return; if (wakeLock.isHeld()) { wakeLock.release(); wakeLock = null; } } /** * 启动重复型定时器 */ public static void registerAlarm() { if(Config.getAlarm())return; Intent intent = new Intent(service, AlarmReceiver.class); pi = PendingIntent.getBroadcast(service, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT); // 设置一个PendingIntent对象,发送广播 am = (AlarmManager) service.getSystemService(Context.ALARM_SERVICE); // 获取AlarmManager对象, Config.setAlarm(true); am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 30*60*1000, pi); } /** * 取消定时器 */ public static void unregisterAlarm() { am.cancel(pi); am = null; Config.setAlarm(false); }}
    2014-05-21下载
    积分:1
  • Android串口通信实例
    Android Studio下的串口通信实例项目,已通过测试。可实现对于串口的设置、打开、发送、接收等操作 【调试说明】需先打开串口,然后再打开该app
    2019-08-25下载
    积分:1
  • 游戏引擎jar包
    游戏引擎jar包
    2013-12-24下载
    积分:1
  • android 自定义时间段选择dialog 实例源码下载
    android 自定义时间段选择dialog 实例源码下载
    2015-05-15下载
    积分:1
  • 696518资源总数
  • 104622会员总数
  • 14今日下载