今天在智能停车场项目中需要实现PullToRefreshListView的单选功能,考虑到分页,刷新等,以前的实现方式是采用自己维护一个集合保存选中位置的选中状态,但这个方式比较繁琐,今天采用了listview的单选模式

listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);来实现:

ListView是通过实现Checkable接口来处理单选模式的,这要求Item的视图实现Checkable接口,创建ChoiceListItemView类来实现该接口,ListView选中某个Item时,会调用ChoiceListItemView类的setChecked的方法:
 
自定义Adapter
  1. package com.centrvideo.parkapp.adapter;
    import java.util.List;
    import android.content.Context;
    import android.view.View;
    import android.view.ViewGroup;
    import android.widget.ListView;
    import com.centrvideo.parkapp.demain.ExportInfo;
    public class ExportAdapter extends MyBaseAdapter<ExportInfo, ListView> {
    public ExportAdapter(Context context, List<ExportInfo> list) {
    super(context, list);
    }
    @Override
    public View getView(int position, View covertView, ViewGroup group) {
    ChoiceListItemView view;
    if (covertView == null) {
    view = new ChoiceListItemView(context, null);
    } else {
    view = (ChoiceListItemView) covertView;
    }
    ExportInfo exportInfo = list.get(position);
    view.setData(exportInfo);
    return view;
    }
    }
2、自定义ListView的item视图
  1. package com.centrvideo.parkapp.adapter;
    import android.content.Context;
    import android.util.AttributeSet;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.widget.CheckBox;
    import android.widget.Checkable;
    import android.widget.ImageView;
    import android.widget.LinearLayout;
    import android.widget.TextView;
    import com.centrvideo.parkapp.R;
    import com.centrvideo.parkapp.demain.ExportInfo;
    import com.centrvideo.parkapp.util.ImageLoaderUtils;
    import com.lidroid.xutils.ViewUtils;
    import com.lidroid.xutils.view.annotation.ViewInject; public class ChoiceListItemView extends LinearLayout implements Checkable { @ViewInject(R.id.listview_export_image)
    private ImageView listview_export_image;
    @ViewInject(R.id.listview_export_entrytime)
    private TextView listview_export_entrytime;
    @ViewInject(R.id.listview_export_number)
    private TextView listview_export_number;
    @ViewInject(R.id.listview_entry_time)
    private TextView listview_entry_time;
    @ViewInject(R.id.cb_export)
    public CheckBox selectBtn;
    private ImageLoaderUtils imageLoaderUtils;
    public ChoiceListItemView(Context context, AttributeSet attrs) {
    super(context, attrs);
    LayoutInflater inflater = LayoutInflater.from(context);
    View v = inflater.inflate(R.layout.listview_export, this, true);
    ViewUtils.inject(v);
    imageLoaderUtils = ImageLoaderUtils.newInstance();
    } public void setData(ExportInfo exportInfo) {
    imageLoaderUtils.loadImage(exportInfo.getEntryimg(),
    listview_export_image, R.drawable.cell_hold);
    listview_export_entrytime.setText("入口时间:"
    + exportInfo.getEntrytime() + "");
    listview_export_number.setText("车牌号码:"
    + exportInfo.getPlatenumber() + "");
    listview_entry_time.setText("位置:" + exportInfo.getGatewayname()
    + "");
    } @Override
    public boolean isChecked() {
    return selectBtn.isChecked();
    } @Override
    public void setChecked(boolean checked) {
    selectBtn.setChecked(checked);
    //根据是否选中来选择不同的背景图片
    if (checked) {
    selectBtn.setBackgroundResource(R.drawable.cheliangduibi_queding);
    } else {
    selectBtn.setBackgroundResource(0);
    }
    } @Override
    public void toggle() {
    selectBtn.toggle();
    } }
3、Activity中调用:
//启用单选模式
listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE); //获得选中结果;通过listView.getCheckedItemPosition();//活动被选中的位置
case R.id.tv_titlebar_right:
if (CommonUtil.isFastDoubleClick()) {
return;
} int selectPosition = listView.getCheckedItemPosition();
CommonUtil.StartToast(ExportSureListActivity.this,"被选中的位置:"+selectPosition);
ExportInfo exportInfo = list1.get(selectPosition-1);//注意这里需要减1
CommonUtil.StartToast(ExportSureListActivity.this,"被选中的位置:"+exportInfo.toString());
// intent = new Intent(ExportSureListActivity.this,
// ChargeActivity.class);
// startActivity(intent);
break;
}

http://www.cnblogs.com/xiaoxiao-study/p/a1e1561444542d99b70e781be488f35e.html

ListView单选的实现总结(转)的更多相关文章

  1. listView 单选实现

    上一篇知道可以使用android自带的listview的chiocemode的单选模式实现.但那个布局是系统自带的checkedTextView,有时候我们需要自己实现布局,那么下面我们开始实现   ...

  2. ListView 自己定义BaseAdapter实现单选打勾(无漏洞)

    (假设须要完整demo,请评论留下邮箱) (眼下源代码已经不发送.假设须要源代码,加qq316701116.不喜勿扰) 近期由于一个项目的原因须要自己定义一个BaseAdapter实现ListVIew ...

  3. Android录屏命令、Android录Gif、Android录视频

    NoHttp开源地址:https://github.com/yanzhenjie/NoHttp NoHttp具体使用文档已公布,你想知道的全都有,请点我移步! 版权声明:转载请注明本文转自严振杰的博客 ...

  4. Android在listview添加checkbox实现单选多选操作问题(转)

    转自:http://yangshen998.iteye.com/blog/1310183 在Android某些开发需求当中,有时候需要在listveiw中加入checkbox实现单选,多选操作.表面上 ...

  5. 本地数据下,radiobutton和图片组合,利用adapter+listview进行单选

    浮生偷得半日闲,等接口定义的过程中,重新复习下adapter+listview实现单选的方法 主界面 <RelativeLayout xmlns:android="http://sch ...

  6. ListView 实现多选/单选

    http://blog.csdn.net/ljfbest/article/details/40685327 ListView自身带了单选.多选模式,可通过listview.setChoiceMode来 ...

  7. 【转】ListView与RadioButton组合——自定义单选列表

    原文网址:http://blog.csdn.net/checkin001/article/details/11519131 Android自带的RadioButton单选框只支持添加文字,我们自己写A ...

  8. ListView与RadioButton组合——自定义单选列表

      标签: radiobuttonlistviewandroidlayout 2013-09-10 11:13 19396人阅读 评论(8) 收藏 举报  分类: Android(19)  版权声明: ...

  9. C# winform项目中ListView控件使用CheckBoxes属性实现单选功能

    C# winform项目中ListView控件使用CheckBoxes属性实现单选功能 在做项目时需要使用ListView控件的CheckBoxes属性显示,还要在点击行时自动选中CheckBoxes ...

随机推荐

  1. 深度this指针

    深入探讨this指针   为了写这篇文章.准备了好长时间,翻遍了箱底的书籍.可是如今还是不敢放开手来写,战战兢兢. 不是操心自己写错.而是唯恐自己错误误导别人.同一时候也希望这篇文章能给你一点收获.既 ...

  2. 逆向wireshark学习SSL协议算法(转)

    小贴士:SSL协议的定义 SSL(Secure Sockets Layer 安全套接层),及其继任者传输层安全(Transport Layer Security,TLS)是为网络通信提供安全及数据完整 ...

  3. Android访问服务器(TOMCAT)乱码引发的问题

    1.浏览器往服务器发送的请求主要可分为2种:get.post:delete.head等不赘述. GET方式: 从浏览器上直接敲地址,最大特点就是参数直接跟在地址后面. POST方式:表单提交等. 2. ...

  4. MonkenRunner通过HierarchyViewer定位控制的方法和建议(Appium/UIAutomator/Robotium侣)

    1. 背景 正在使用MonkeyRunner当我们经常使用Chimchat下面HierarchyViewer模块获得目标控制的一些信息,以协助我们测试.但在MonkeyRunner官方的说法是没有看到 ...

  5. 最短路径:Dijkstra,Bellman,SPFA,Floyd该算法的实施

    watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvdTAxMzQ4NzA1MQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQk ...

  6. jq实现图像旋转木马:轮焦点+关于控制+自己主动旋转木马

    资源:http://www.ido321.com/862.html html代码: 1: <!DOCTYPE html> 2: <html lang="en"&g ...

  7. 创建Material Design风格的Android应用--使用Drawable

    下面Drawables的功能帮助你在应用中实现Material Design: 图片资源着色 在android 5.0(api 21)和更高版本号,能够着色bitmap和.9 png 通过定义透明度遮 ...

  8. LeetCode Solutions : Reorder List

    →-→Ln-1→Ln, reorder it to: L→Ln-2→- You must do this in-place without altering the nodes' values. Fo ...

  9. [ACM] HDU 1227 Fast Food (经典Dp)

    Fast Food Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total ...

  10. SharePoint 2013 创建一个搜索中心和搜索设置

    这篇文章不是太多深奥的东西,只是一个简单的搜索配置,假设你已经有了,请跳过这篇文章. 行,输入信息,大家都知道,搜索SharePoint一个主要特征.下列,我们在搜索中心创建个人资料. 1.创建Sea ...