安卓listview adapter

1.首先添加一个布局listview

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    //android:divider="@null"去掉listview分割线
    <ListView
        android:id="@+id/redpageList"
        android:divider="@null"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
    </ListView>
</LinearLayout>

2.创建一个activity加载listview布局

public class RedPageActivity extends Activity {
    private ListView lv;
    //判断复用问题的map int坐标 bool为是否加载过 true为存在 falsely不存在
    private Map<Integer,Boolean> selectedMap=new HashMap<>();
    //提供了一种关于显示的通用信息,如显示大小,分辨率和字体
    DisplayMetrics dm = new DisplayMetrics();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //加载listview布局
        setContentView(R.layout.activity_redpage);
        //获取listview
        lv=(ListView)findViewById(R.id.redpageList);
        //初始化map的数据 都为false
        for (int i = 0; i < 10; i++) {
            selectedMap.put(i, false);
        }
        getWindowManager().getDefaultDisplay().getMetrics(dm);
        //获取系统宽度
        System.out.println("dm"+dm.widthPixels);
        //创建的adapter
        RedpageActivityAdapter redpageAdapter=new RedpageActivityAdapter(this,selectedMap,dm);
        //给listview设置适配器
        lv.setAdapter(redpageAdapter);
        //点击事件
        lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                System.out.println("aaa"+position);
                //判断复用问题 
                //不存在就put
                if (!selectedMap.containsKey(position)){
                    selectedMap.put(position,true);
                }
                else{
                    //存在就改变
                    boolean isCheck=selectedMap.get(position);
                    selectedMap.put(position,!isCheck);
                }

                RedpageActivityAdapter.ViewHolder viewHolder = (RedpageActivityAdapter.ViewHolder) parent.getTag();
                //一个属性动画
                ObjectAnimator animator = ObjectAnimator.ofFloat(view.findViewById(R.id.redup), "translationX", 0, -(dm.widthPixels));
                ObjectAnimator animator2 = ObjectAnimator.ofFloat(view.findViewById(R.id.redback), "translationX", 0, -(dm.widthPixels));
                AnimatorSet animSet=new AnimatorSet();
                animSet.playTogether(animator,animator2);
                animSet.setDuration(400);
                animSet.start();
            }
        });

    }
}

3创建RedpageActivityAdapter

public class RedpageActivityAdapter extends BaseAdapter {
    //数据集合
    private List arrayList=new ArrayList();
    //上下文对象
    private Context context;
    private Map<Integer,Boolean> map;
    DisplayMetrics dm;
    public RedpageActivityAdapter(Context context,Map<Integer,Boolean> map,DisplayMetrics dm) {
        this.context=context;
        this.map=map;
        this.dm=dm;
        System.out.println("dm"+dm);
        //一些假数据
        for (int i=0;i<10;i++){
            arrayList.add("zzz"+i);
        }
    }
    //集合的长度
    @Override
    public int getCount() {
        return arrayList!=null&&arrayList.size()>0?arrayList.size():0;
    }
    //获取item
    @Override
    public Object getItem(int position) {
        return arrayList!=null&&arrayList.size()>0?arrayList.get(position):null;
    }
    //根据位置获取item
    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        ViewHolder holder;
        if(convertView==null){
            holder = new ViewHolder();

            convertView = LayoutInflater.from(context).inflate(R.layout.adapter_red_page_fragment, null);
            holder.relative=(RelativeLayout) convertView.findViewById(R.id.relative);
            AbsListView.LayoutParams params=new AbsListView.LayoutParams((int)(dm.widthPixels-20*dm.density),(int)(dm.widthPixels-20*dm.density)/2);
            holder.relative.setLayoutParams(params);
            holder.redaon=(ImageView) convertView.findViewById(R.id.redaon);
            holder.redback=(ImageView) convertView.findViewById(R.id.redback);
            holder.redup=(ImageView) convertView.findViewById(R.id.redup);
            holder.textView=(TextView)convertView.findViewById(R.id.textView);



//            holder.relative.setOnClickListener(new View.OnClickListener() {
//                @Override
//                public void onClick(View v) {
//
//                    int index=((ViewGroup)v.getParent()).indexOfChild(v);
//                    System.out.println("aaaa"+index);
//                    System.out.println("aaaa"+v.getId());
//                    float curTranslationX = v.findViewById(R.id.redup).getTranslationX();
//                    ObjectAnimator animator = ObjectAnimator.ofFloat(v.findViewById(R.id.redup), "translationX", curTranslationX, -600f);
//                    ObjectAnimator animator2 = ObjectAnimator.ofFloat(v.findViewById(R.id.redback), "translationX", curTranslationX, -500f);
////                    animator.setDuration(5000);
////                    animator.start();
//                    AnimatorSet animSet = new AnimatorSet();
//                    animSet.playTogether(animator,animator2);
//                    animSet.setDuration(500);
//                    animSet.start();
//                }
//            });
            convertView.setTag(holder);
        }else{
            holder = (ViewHolder)convertView.getTag();//取出ViewHolder对象
        }
        //holder.redup.setImageResource(R.id.redup);
        holder.textView.setText(getItem(position).toString());
        boolean flag=map.get(position);
        
        if(flag){
            //移动当前的
            ObjectAnimator animator = ObjectAnimator.ofFloat(holder.redup, "translationX", 0, -(dm.widthPixels));
            ObjectAnimator animator2 = ObjectAnimator.ofFloat(holder.redback, "translationX", 0, -(dm.widthPixels));
            AnimatorSet animSet=new AnimatorSet();
            animSet.playTogether(animator,animator2);
            animSet.setDuration(0);
            animSet.start();
        }else {
            //原始位置
            ObjectAnimator animator = ObjectAnimator.ofFloat(holder.redup, "translationX", 0, -0);
            ObjectAnimator animator2 = ObjectAnimator.ofFloat(holder.redback, "translationX", 0, -0);
            AnimatorSet animSet=new AnimatorSet();
            animSet.playTogether(animator,animator2);
            animSet.setDuration(0);
            animSet.start();
        }
        return convertView;
    }
    //自定义viewholder用于初始化话控件
    public class ViewHolder {
        private RelativeLayout layout;
        public ImageView redback;
        public ImageView redaon;
        public ImageView redup;
        public TextView textView;
        RelativeLayout relative;


    }
}

4.listview中的小布局

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relative"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="10dp"
    >
    <ImageView
        android:id="@+id/redback"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@mipmap/redback"
        />
    <ImageView
        android:id="@+id/redaon"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@mipmap/redaon"
        android:gravity="center_vertical"
        android:layout_margin="10dp"

        />
    <!--android:layout_centerVertical="true"-->
    <ImageView
        android:id="@+id/redup"
        android:layout_marginRight="100dp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@mipmap/redup"
        />
    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"
        />
    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"
        android:text="44444444"
        android:layout_below="@+id/textView"
        />
</RelativeLayout>

大概效果

效果
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容