溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何使用RecyclerView仿應(yīng)用列表實(shí)現(xiàn)網(wǎng)格布局

發(fā)布時(shí)間:2021-09-28 14:21:04 來源:億速云 閱讀:124 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關(guān)如何使用RecyclerView仿應(yīng)用列表實(shí)現(xiàn)網(wǎng)格布局的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

詳細(xì)代碼

XML布局文件

在布局中使用RecyclerView控件

activity_main.xml

<?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="match_parent"  android:orientation="vertical"  tools:context=".MainActivity"  android:background="#9709F7">   <androidx.recyclerview.widget.RecyclerView    android:id="@+id/recyclerview"    android:layout_width="match_parent"    android:layout_height="match_parent" /> </LinearLayout>

RecyclerView子項(xiàng)列表布局

recyclerview_item.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="220dp"  android:layout_height="220dp"  android:background="#20FDFDFD"  android:gravity="center_horizontal"  android:orientation="vertical"  android:layout_margin="20dp">    <ImageView    android:id="@+id/iv_apply_image"    android:layout_width="112dp"    android:layout_height="112dp"    android:layout_marginTop="32dp"    android:src="@mipmap/ic_launcher" />   <TextView    android:id="@+id/tv_apply_name"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_marginTop="19dp"    android:text="鬧鐘"    android:textColor="#fff"    android:textSize="28sp" /></LinearLayout>

JAVA代碼

MainActivity

package com.matt.recyclerview; import androidx.appcompat.app.AppCompatActivity;import androidx.recyclerview.widget.GridLayoutManager;import androidx.recyclerview.widget.RecyclerView; import android.os.Bundle; import java.util.ArrayList;import java.util.List; public class MainActivity extends AppCompatActivity {   private RecyclerView mRecyclerView;  private GridAdapter mGridAdapter;  private List<ApplyBean> mApplyList;   @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    mRecyclerView = findViewById(R.id.recyclerview);    mApplyList = new ArrayList<>();    mApplyList.add(new ApplyBean("SETTINGS","設(shè)置", R.mipmap.ic_launcher));    mApplyList.add(new ApplyBean("CALCULATOR","計(jì)算器", R.mipmap.ic_launcher));    mApplyList.add(new ApplyBean("WEATHER","天氣", R.mipmap.ic_launcher));    mApplyList.add(new ApplyBean("CALENDAR","日歷", R.mipmap.ic_launcher));    mApplyList.add(new ApplyBean("PHOTO" ,"相冊(cè)", R.mipmap.ic_launcher));    mApplyList.add(new ApplyBean("TIME" ,"時(shí)鐘", R.mipmap.ic_launcher));    mApplyList.add(new ApplyBean("FM" ,"收音機(jī)", R.mipmap.ic_launcher));    mApplyList.add(new ApplyBean("CAMERA" ,"相機(jī)", R.mipmap.ic_launcher));    mApplyList.add(new ApplyBean("PLAY","播放器", R.mipmap.ic_launcher));    mGridAdapter = new GridAdapter(mApplyList);     //這里的第二個(gè)參數(shù)4代表的是網(wǎng)格的列數(shù)    mRecyclerView.setLayoutManager(new GridLayoutManager(this, 3));    mRecyclerView.setAdapter(mGridAdapter);  }}

RecyclerView適配器GridAdapter

package com.fenda.homepage.Adapter; import android.support.v7.widget.RecyclerView;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.ImageView;import android.widget.TextView;  import com.fenda.homepage.R;import com.fenda.homepage.bean.ApplyBean; import java.util.List; /** * @author:Matt.Liao * 日期時(shí)間: 2019/9/1 17:45 * 內(nèi)容描述: * 版本: * 包名: */public class GridAdapter extends RecyclerView.Adapter<GridAdapter.Holder>{  private List<ApplyBean> mList;  private RecyclerView recyclerView;  public GridAdapter(List<ApplyBean> list){    this.mList = list;  }   @Override  public Holder onCreateViewHolder(ViewGroup parent, int viewType) {    View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.submenu_item_recyclerview, null);    final Holder holder = new Holder(view);    //對(duì)加載的子項(xiàng)注冊(cè)監(jiān)聽事件    holder.fruitView.setOnClickListener(new View.OnClickListener() {      @Override      public void onClick(View view) {        int position = holder.getAdapterPosition();        String applyId = mList.get(position).getApplyId();        onItemClickListener.onItemClick(view ,applyId);      }    });    return holder;  }   @Override  public void onBindViewHolder(Holder holder, int position) {    holder.mApplyNameTv.setText(mList.get(position).getApplyName());    holder.mApplyImageIv.setImageResource(mList.get(position).getApplyImage());  }   @Override  public int getItemCount() {    return mList == null ? 0 : mList.size();  }    private OnItemClickListener onItemClickListener;  public void setOnItemClickListener(OnItemClickListener onItemClickListener){    this.onItemClickListener = onItemClickListener;  }   /**   * 定義RecyclerView選項(xiàng)單擊事件的回調(diào)接口   */  public interface OnItemClickListener{     /**     * @param view 當(dāng)前單擊的View     * @param applyId 單擊的View的應(yīng)用id     */    void onItemClick(View view, String applyId);  }   class Holder extends RecyclerView.ViewHolder {    private TextView mApplyNameTv;    private ImageView mApplyImageIv;    private View fruitView;  //表示我們自定義的控件的視圖    public Holder(View itemView) {      super(itemView);      fruitView = itemView;      mApplyNameTv = itemView.findViewById(R.id.tv_apply_name);      mApplyImageIv = itemView.findViewById(R.id.iv_apply_image);    }  }}

應(yīng)用列表實(shí)體類ApplyBean

package com.matt.recyclerview; import android.os.Parcel;import android.os.Parcelable; /** * @author matt.liaojianpeng * 日期時(shí)間: 2019/9/1 16:31 * 內(nèi)容描述: * 版本: * 包名: */public class ApplyBean{  private String applyId;  private String applyName;  private int applyImage;   public String getApplyId() {    return applyId;  }   public void setApplyId(String applyId) {    this.applyId = applyId;  }   public ApplyBean(String applyName, int applyImage){    this.applyName = applyName;    this.applyImage = applyImage;  }  public ApplyBean(String applyId , String applyName, int applyImage){    this.applyId = applyId;    this.applyName = applyName;    this.applyImage = applyImage;  }  public ApplyBean() {  }   public String getApplyName() {    return applyName;  }   public void setApplyName(String applyName) {    this.applyName = applyName;  }   public int getApplyImage() {    return applyImage;  }   public void setApplyImage(int applyImage) {    this.applyImage = applyImage;  }  public ApplyBean(Parcel source) {    applyId = source.readString();    applyName = source.readString();     applyImage = source.readInt();  }}

詳細(xì)講解

設(shè)置RecyclerView適配器

//這里的第二個(gè)參數(shù)3代表的是網(wǎng)格的列數(shù)mRecyclerView.setLayoutManager(new GridLayoutManager(this, 3));mRecyclerView.setAdapter(mGridAdapter);

可以設(shè)置的一些參數(shù),說明如下:

setLayoutManager設(shè)置RecyclerView布局樣式

GridLayoutManager:網(wǎng)格布局

LinearLayoutManager:線性布局

適配器GridAdapter繼承RecyclerView.Adapter

初始化

重寫構(gòu)造方法,傳入子項(xiàng)數(shù)據(jù)列表

private List<ApplyBean> mList;  private RecyclerView recyclerView;  public GridAdapter(List<ApplyBean> list){    this.mList = list;  }

內(nèi)部類Holder用于綁定數(shù)據(jù)類型

class Holder extends RecyclerView.ViewHolder {    private TextView mApplyNameTv;    private ImageView mApplyImageIv;    private View fruitView;  //表示我們自定義的控件的視圖    public Holder(View itemView) {      super(itemView);      fruitView = itemView;      mApplyNameTv = itemView.findViewById(R.id.tv_apply_name);      mApplyImageIv = itemView.findViewById(R.id.iv_apply_image);    }  }

onCreateViewHolder()方法,負(fù)責(zé)承載每個(gè)子項(xiàng)的布局。

onBindViewHolder()方法,負(fù)責(zé)將每個(gè)子項(xiàng)holder綁定數(shù)據(jù)。

getItemCount()方法,返回子項(xiàng)列表數(shù)目。

setOnItemClickListener()方法,設(shè)置子項(xiàng)列表監(jiān)聽。

OnItemClickListener()接口,定義RecyclerView選項(xiàng)單擊事件的回調(diào)接口。

子項(xiàng)監(jiān)聽實(shí)現(xiàn)的方法,如下

mGridAdapter.setOnItemClickListener(new GridAdapter.OnItemClickListener() {      @Override      public void onItemClick(View view, String applyId) {        if(applyId.equals("SETTINGS")){          Toast.makeText(getApplicationContext(),"設(shè)置",Toast.LENGTH_SHORT).show();        } else if (applyId.equals("CALCULATOR")){          Toast.makeText(getApplicationContext(),"計(jì)算器",Toast.LENGTH_SHORT).show();        }      }    });

感謝各位的閱讀!關(guān)于“如何使用RecyclerView仿應(yīng)用列表實(shí)現(xiàn)網(wǎng)格布局”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI