IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android作业二Recyclerview+adapter+StaggeredGridLayoutManager展示联系人 -> 正文阅读

[移动开发]Android作业二Recyclerview+adapter+StaggeredGridLayoutManager展示联系人

Android作业二Recyclerview+adapter+StaggeredGridLayoutManager展示联系人

准备工作
在gradle中导入依赖
implementation ‘androidx.appcompat:appcompat:1.2.0’
implementation 'androidx.recyclerview:recyclerview:1.2.0’
尽量与appcompat的版本相同

一.编写要放入contactpeople的内部layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="8dp"
    android:orientation="vertical">


    <ImageView
        android:id="@+id/peoimg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:id="@+id/contactname"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"

                tools:text="1" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:id="@+id/contactnumber"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"

                tools:text="price" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:id="@+id/contacttype"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"

                tools:text="" />
        </LinearLayout>

    </LinearLayout>

</LinearLayout>

展示效果为
一个联系人头像加三个信息

一.修改上次的contactpeople页面

	添加recyclerview,adapter,上下文context,和要添加的数据data
 private RecyclerView recyclerView;
    private myadapter myadapter;
    private Context context;
    private ArrayList<HashMap<String,Object>> data=new ArrayList<HashMap<String,Object>>();

然后在oncreateview函数中为新增的变量赋值

context=inflate.getContext();
        recyclerView=inflate.findViewById(R.id.recycleview);
        HashMap<String, Object> stringObjectHashMap = new HashMap<>();
        stringObjectHashMap.put("name","张小致");
        stringObjectHashMap.put("number",138999);
        stringObjectHashMap.put("type","男");
        HashMap<String, Object> stringObjectHashMap1 = new HashMap<>();
        stringObjectHashMap1.put("name","朱小兵");
        stringObjectHashMap1.put("number",138999);
        stringObjectHashMap1.put("type","男");
        HashMap<String, Object> stringObjectHashMap2 = new HashMap<>();
        stringObjectHashMap2.put("name","左小萌");
        stringObjectHashMap2.put("number",138999);
        stringObjectHashMap2.put("type","女");



        //System.out.println(data.size());
        data.add(stringObjectHashMap);
        data.add(stringObjectHashMap1);
        data.add(stringObjectHashMap2);
        myadapter=new myadapter(context,data);

三.编写adapter

继承自RecyclerView.adapter,注意泛型需要添加继承自RecyclerView.ViewHolder的子类
上代码

public class myadapter extends RecyclerView.Adapter <myadapter.myviewholder>{
    private ArrayList<HashMap<String,Object>> data;
    private Context context;
    private View inflater;
    public myadapter(Context context,ArrayList<HashMap<String,Object>> data) {
        this.context=context;
        this.data=data;
    }

    @NonNull
    @Override
    public myviewholder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
         inflater = LayoutInflater.from(context).inflate(R.layout.contactlist, parent, false);
        myviewholder myholder = new myviewholder(inflater);
        return myholder;
    }

    @Override
    public void onBindViewHolder(@NonNull myviewholder holder, int position) {
        HashMap<String, Object> stringObjectHashMap = data.get(position);
        holder.m.setImageResource(R.drawable.contact);
       // String[] strings = stringObjectHashMap.keySet().toArray(new String[0]);
//        System.out.println(strings.toString());
//        System.out.println(strings[0]);
        holder.name.setText(stringObjectHashMap.get("name").toString());
        holder.number.setText(stringObjectHashMap.get("number").toString());
        holder.type.setText(stringObjectHashMap.get("type").toString());

    }

    @Override
    public int getItemViewType(int position) {
        return super.getItemViewType(position);
    }

    @Override
    public int getItemCount() {
        return data.size();
    }
    public class myviewholder extends RecyclerView.ViewHolder {
        ImageView m;
        TextView name,number,type;
        public myviewholder(@NonNull View itemView) {
            super(itemView);
            m=itemView.findViewById(R.id.peoimg);
            name=itemView.findViewById(R.id.contactname);
            number=itemView.findViewById(R.id.contactnumber);
            type=itemView.findViewById(R.id.contacttype);
        }
    }
}

在myviewhoder中绑定view,在onBindViewHolder中设置数据

四.回到contactpeople中写剩下的部分(重点代码)

 StaggeredGridLayoutManager manager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
        recyclerView.setLayoutManager(manager);
        recyclerView.setAdapter(myadapter);

注意这里的manager可以任选,有LinearLayout,grid之类的,可以实现不同样式.这里以staggeredgrid来举例子,第一个参数是指分多少列

最后展示总体效果

在这里插入图片描述
最后附上gitee链接
gitee安卓作业二

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-10-17 12:06:28  更:2021-10-17 12:08:01 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 22:06:18-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码