Android studio RecyclerView 应用设计

一、创建empty activity项目:

二、打开activity_main.xml布局文件:

添加RecyclerView控件

复制代码
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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="match_parent"
    tools:context=".MainActivity">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:layout_editor_absoluteX="1dp"
        tools:layout_editor_absoluteY="1dp" />
</androidx.constraintlayout.widget.ConstraintLayout>

三、新建子布局文件

四、修改子布局文件,添加item:

复制代码
<ImageView
    android:id="@+id/imageView"
    android:layout_width="32dp"
    android:layout_height="32dp"
    tools:srcCompat="@tools:sample/avatars" />

<TextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="32dp"
    android:text="TextView" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="64dp"
    android:text="TextView" />

五、添加adapter:

六、MainActivity.java:

定义:

复制代码
private RecyclerView recyclerView;
private ProvinceAdapter provinceAdapter;
private List<Province> provinceList = new ArrayList<>();

初始化:

复制代码
recyclerView = findViewById(R.id.recyclerview);

String provinceName[] = {"北京","上海","天津","重庆",
                         "内蒙古","广西","宁夏","新疆","西藏",
                         "香港","澳门",
                         "河北","河南","山东","山西","辽宁",
                         "吉林","黑龙江","江苏","浙江","安徽",
                         "福建","江西","湖北","湖南","广东",
                         "海南","四川","贵州","云南","陕西",
                         "甘肃","青海","台湾"        };
String provincialCapital[] = {
        "北京","上海","天津","重庆",
        "呼和浩特","南宁","银川","乌鲁木齐","拉萨",
        "香港","澳门",
        "石家庄","郑州","济南","太原","沈阳",
        "长春","哈尔滨","南京","杭州","合肥",
        "福州","南昌","武汉","长沙","广州",
        "海口","成都","贵阳","昆明","西安",
        "兰州","西宁","台北"

};


for (int i = 0; i < 34; i++){
    Province province = new Province();
    province.name = provinceName[i];
    province.provincialCapital = provincialCapital[i];
    provinceList.add(province);
}

引用:

复制代码
provinceAdapter = new ProvinceAdapter();
recyclerView.setAdapter(provinceAdapter);
GridLayoutManager gridLayoutManager = new GridLayoutManager(MainActivity.this,2);
recyclerView.setLayoutManager(gridLayoutManager);
DividerItemDecoration dividerItemDecoration = new DividerItemDecoration(this,DividerItemDecoration.HORIZONTAL);
recyclerView.addItemDecoration(dividerItemDecoration);

七、运行效果:

相关推荐
雨白1 天前
Jetpack Compose Navigation 2.x 详解
android·android jetpack
Android系统攻城狮1 天前
Android内核进阶之获取DMA地址snd_pcm_sgbuf_get_addr:用法实例(九十一)
android·pcm·android内核·音频进阶·pcm硬件参数
清空mega1 天前
Android Studio移动应用基础教程(前言)
android·ide·android studio
2501_937145411 天前
2025IPTV 源码优化版实测:双架构兼容 + 可视化运维
android·源码·源代码管理·机顶盒
思绪漂移1 天前
CodeBuddy AI IDE:全栈AI开发平台实战
ide·人工智能·ai code
zhoutanooi1 天前
安卓bp文件编译学习
android·学习
aramae1 天前
MySQL数据库入门指南
android·数据库·经验分享·笔记·mysql
百锦再1 天前
选择Rust的理由:从内存管理到抛弃抽象
android·java·开发语言·后端·python·rust·go
爱分享的Shawn_Salt1 天前
IntelliJ IDEA初始化指南
java·ide·intellij-idea
whatever who cares1 天前
在Java/Android中,List的属性和方法
android·java