首页 > 移动平台 > 详细

Android ExpandableListView长按事件

时间:2014-04-16 17:04:30      阅读:739      评论:0      收藏:0      [点我收藏+]

expandableListView.setOnItemLongClickListener(new OnItemLongClickListener(){

        @Override
        public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
                int arg2, long arg3) {
            // TODO Auto-generated method stub
            if(ExpandableListView.getPackedPositionType(arg3)==ExpandableListView.PACKED_POSITION_TYPE_CHILD){
                long packPos = ((ExpandableListView) arg0).getExpandableListPosition(arg2);
                int groupPosition=ExpandableListView.getPackedPositionGroup(packPos);
                int childPosition= ExpandableListView.getPackedPositionChild(packPos);
                System.out.println("------------------------------->"+groupPosition);
                System.out.println("--------------------------------------->"+childPosition);
                return true;
            }else if(ExpandableListView.getPackedPositionType(arg3)==ExpandableListView.PACKED_POSITION_TYPE_GROUP){
                long packPos = ((ExpandableListView)arg0).getExpandableListPosition(arg2);
                int groupPosition=ExpandableListView.getPackedPositionGroup(packPos);
                int childPosition= ExpandableListView.getPackedPositionChild(packPos);
                System.out.println("-------------------++++++++++++++------------>"+groupPosition);
                System.out.println("-----------------------++++++++++++++---------------->"+childPosition);
            }
            return false;
        }
        });

Android ExpandableListView长按事件,布布扣,bubuko.com

Android ExpandableListView长按事件

原文:http://www.cnblogs.com/suizi/p/3666539.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!