关于RecyclerView(一)基本使用
前言
最近在项目中用到了ListView,不知道为什么总是出现数据错乱的情况,另外RecyclerView包含很多Item动画,所以改成了RecyclerView。
简单使用
- RecyclerView使用的时候需要引入依赖
implementation 'com.android.support:recyclerview-v7:28.0.0'
后面的版本号根据自己的项目版本更改,引入完成之后点击上面的Sync Now
。
- 在activity中添加控件
<android.support.v7.widget.RecyclerView
android:id="@+id/focus_list_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="10dp"></android.support.v7.widget.RecyclerView>
- 编写item.xml布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="70dp"
android:layout_marginBottom="5dp"
android:layout_marginTop="4dp"
android:background="#fff"
android:orientation="horizontal">
<com.onepilltest.others.SwipeMenu
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/focus_list_show"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:gravity="center_vertical">
<ImageView
android:layout_marginLeft="20dp"
android:id="@+id/focus_list_item_img"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:layout_marginRight="10dp"
android:scaleType="centerCrop"
android:src="@drawable/user">
</ImageView>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="7"
android:gravity="center"
android:orientation="vertical"
android:paddingLeft="5dp">
<TextView
android:id="@+id/focus_list_item_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="7dp"
android:gravity="left"
android:text="李四 18831107935" />
<TextView
android:id="@+id/focus_list_item_tag"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="河北师范大学软件学院302" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="65dp"
android:layout_weight="3"
android:gravity="center">
<ImageView
android:id="@+id/focus_list_item_add"
android:layout_width="35dp"
android:layout_height="35dp"
android:layout_gravity="center"
/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="160dp"
android:layout_height="match_parent">
<TextView
android:id="@+id/focus_list_adds"
android:layout_width="80dp"
android:layout_height="match_parent"
android:background="#f70"
android:gravity="center"
android:text="查看"
android:textColor="#ffffff"
android:textSize="14sp" />
<TextView
android:id="@+id/focus_list_dels"
android:layout_width="80dp"
android:layout_height="match_parent"
android:background="@color/holo_red_light"
android:gravity="center"
android:text="取消关注"
android:textColor="#ffffff"
android:textSize="14sp" />
</LinearLayout>
</com.onepilltest.others.SwipeMenu>
</LinearLayout>
- 创建Adapter
package com.onepilltest.personal;
import android.content.Context;
import android.content.Intent;
import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import com.bumptech.glide.Glide;
import com.bumptech.glide.request.RequestOptions;
import com.onepilltest.R;
import com.onepilltest.URL.Connect;
import com.onepilltest.entity.ToFocus;
import com.onepilltest.entity.focus;
import com.onepilltest.index.DoctorDetailsActivity;
import com.onepilltest.index.FoundDoctorActivity;
import java.util.List;
public class FocusListAdapter2 extends RecyclerView.Adapter<FocusListAdapter2.ViewHolder> {
private List<ToFocus> focusList;
public FocusListAdapter2(List<ToFocus> baseList) {
focusList = baseList;
for(ToFocus f:focusList){
Log.e("focus数据源",""+f.toString());
}
}
static class ViewHolder extends RecyclerView.ViewHolder{
ImageView img ;
TextView name;
TextView more;
TextView add;
TextView del;
public ViewHolder(@NonNull View itemView) {
super(itemView);
img = itemView.findViewById(R.id.focus_list_item_img);
name = itemView.findViewById(R.id.focus_list_item_name);
more = itemView.findViewById(R.id.focus_list_item_tag);
add = itemView.findViewById(R.id.focus_list_adds);
del = itemView.findViewById(R.id.focus_list_dels);
}
}
private Context mContext;
// //点击和长按
// public interface OnItemClickListener {
// void onClick(int position);
// }
// private OnItemClickListener listener;
// public void setOnItemClickListener(OnItemClickListener listener) {
// this.listener = listener;
// }
//
// public interface OnItemLongClickListener {
// void onClick(int position);
// }
// private OnItemLongClickListener longClickListener;
// public void setOnItemLongClickListener(OnItemLongClickListener longClickListener) {
// this.longClickListener = longClickListener;
// }
@NonNull
@Override
public ViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) {
View view = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.focus_liste_item,viewGroup,false);
mContext = viewGroup.getContext();
ViewHolder holder = new ViewHolder(view);
return holder;
}
@Override
public void onBindViewHolder(@NonNull ViewHolder viewHolder, int i) {
ToFocus focus = focusList.get(i);
//加载头像
RequestOptions requestOptions = new RequestOptions().circleCrop();
Glide.with(mContext)
.load(Connect.BASE_URL + focus.getImg())
.apply(requestOptions)
.into(viewHolder.img);
viewHolder.name.setText(focus.getName());
viewHolder.more.setText(focus.getMore());
viewHolder.add.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.e("focusAdapter","查看第"+i+"条数据");
Toast.makeText(mContext,"查看第"+i+"条数据,Type:"+focus.toString(),Toast.LENGTH_SHORT).show();
if (focus.getType() == 1){
Intent intent = new Intent(mContext, DoctorDetailsActivity.class);
intent.putExtra("id",focus.getTypeId());
mContext.startActivity(intent);
}else{
Intent intent = new Intent(mContext, ProductActivity.class);
intent.putExtra("id",focus.getTypeId());
mContext.startActivity(intent);
}
}
});
viewHolder.del.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.e("focusAdapter","删除第"+i+"条数据");
Toast.makeText(mContext,"删除第"+i+"条数据",Toast.LENGTH_SHORT).show();
}
});
}
@Override
public int getItemCount() {
return focusList.size();
}
}
- 在MainActivity中绑定Adapter
recyclerView = findViewById(R.id.focus_list_list);
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
recyclerView.setLayoutManager(layoutManager);
adapter = new FocusListAdapter2(baseList);
recyclerView.setAdapter(adapter);
关于RecyclerView(一)基本使用的更多相关文章
- RecyclerView使用大全
RecylerView介绍 RecylerView是support-v7包中的新组件,是一个强大的滑动组件,与经典的ListView相比,同样拥有item回收复用的功能,这一点从它的名字recyler ...
- 带你实现开发者头条APP(五)--RecyclerView下拉刷新上拉加载
title: 带你实现开发者头条APP(五)--RecyclerView下拉刷新上拉加载 tags: -RecyclerView,下拉刷新,上拉加载更多 grammar_cjkRuby: true - ...
- 安卓易学,爬坑不易——腾讯老司机的RecyclerView局部刷新爬坑之路
针对手游的性能优化,腾讯WeTest平台的Cube工具提供了基本所有相关指标的检测,为手游进行最高效和准确的测试服务,不断改善玩家的体验.目前功能还在免费开放中. 点击地址:http://wetest ...
- Android Studio开发RecyclerView遇到的各种问题以及解决(二)
开发RecyclerView时候需要导入别人的例子,我的是从github导入的,下载下github的压缩包之后解压看你要导入的文件是priject还是Module.(一般有app文件夹的大部分是pro ...
- Android Studio开发RecyclerView遇到的各种问题以及解决(一)
以前一直在用ListView,,,最近才看RecyclerView发现好强大.RecyclerView前提是Android版本在5.0以上,本人以前用的是eclipse只支持到4.4.索性就安装一个A ...
- Android的Kotlin秘方(II):RecyclerView 和 DiffUtil
作者:Antonio Leiva 时间:Sep 12, 2016 原文链接:http://antonioleiva.com/recyclerview-diffutil-kotlin/ 如你所知,在[支 ...
- Android RecyclerView 实现支付宝首页效果
Android RecyclerView 实现支付宝首页效果 [TOC] 虽然我本人不喜欢支付宝的,但是这个网格本身其实还是不错的,项目更新中更改了一个布局为网格模式,类似支付宝.(估计是产品抄袭的= ...
- Android开发学习之路-RecyclerView滑动删除和拖动排序
Android开发学习之路-RecyclerView使用初探 Android开发学习之路-RecyclerView的Item自定义动画及DefaultItemAnimator源码分析 Android开 ...
- 打造android偷懒神器———RecyclerView的万能适配器
转载请注明出处谢谢:http://www.cnblogs.com/liushilin/p/5720926.html 很不好意思让大家久等了,本来昨天就应该写这个的,无奈公司昨天任务比较紧,所以没能按时 ...
- 安卓v7支持包下的ListView替代品————RecyclerView
RecyclerView这个控件也出来很久了,相信大家也学习的差不多了,如果还没学习的,或许我可以带领大家体验一把这个艺术般的控件. 项目已经同步至github:https://github.com/ ...
随机推荐
- vscode 配置 c++ 环境
vscode 配置 c++ 环境 参考的这篇bloghttps://blog.csdn.net/bat67/article/details/81268581 1.安装编译器.这里安装 codebloc ...
- 【Oracle】rman中SBT_TYPE类型的备份如何删除
技阳的rman数据库出现删除rman备份失败,原因是出现SBT_TYPE的磁带备份. [BEGIN] 2018/8/13 13:48:42 RMAN> list backup; List of ...
- WSL中文本地化
WSL中文本地化 Windows Subsystem for Linux(简称WSL)是一个在Windows 10上能够运行原生Linux二进制可执行文件(ELF格式)的兼容层.它是由微软与Canon ...
- 学习 Java 网站推荐给你
推荐几个非常不错的 Java 学习网站 LearnJava 在线 这是一个非常不错的学习 Java 的在线网站,纯免费.这是一个个人项目,旨在通过简单有效的在浏览器中进行练习让你快速掌握 Java 编 ...
- 【Python3爬虫】破解时光网登录加密参数并实现模拟登录
一.站点分析 MTime 时光网是一个电影媒体与电商服务平台,而这次做的模拟登录则是依靠其手机端站点,站点地址为:https://m.mtime.cn/#.切换到登录页面,再分别输入账号和错误的密码, ...
- css hack原理及常用hack
原理:利用不同浏览器对CSS的支持和解析结果不一样编写针对特定浏览器样式.常见的hack有1)属性hack.2)选择器hack.3)IE条件注释 IE条件注释:适用于[IE5, IE9]常见格式如下 ...
- 神奇的建图方式(Tarjan)——小z玩游戏
原题来自与:洛谷 P5676(GZOI2017) 链接: https://www.luogu.com.cn/problem/P5676 题面: 题意比较明显,如果已经建好了边,那么跑个Tarjan ...
- H5+CSS复习笔记(全)
1.自结束标签和注释 通常标签都是成对出现,如<h1></h1>,<div></div>等等.但是又些标签是没有结束标签的,成为自结束标签,如<i ...
- 选择困难症必看!云服务器如何选择操作系统,Windows和Linux哪个更好?
在购买云服务器时,会有一个必选的配置,就是操作系统的选择,如何选择操作系统?操作系统选择错了怎么办?这是不少用户会遇到的问题,今天我们就来教大家如何选择操作系统,以及操作系统选择错了,该怎么切换. W ...
- Scala 面向对象(十三):隐式转换和隐式参数
隐式转换的实际需要=>指定某些数据类型的相互转化 1 隐式函数基本介绍 隐式转换函数是以implicit关键字声明的带有单个参数的函数.这种函数将会自动应用,将值从一种类型转换为另一种类型 隐式 ...