Android Studio开发(二)使用RecyclerViewAndroid Studio开发(二)RecyclerView一、任务需求二、
我们可以将上述主要划分为三部分,如下图所示:
item.xml
,放置所需的控件,实现批量添加控件。
Fragment.xml: 本项目中对应 tab02.xml
,放置所需的控件,可包含 RecyclerView。
MainActivity.xml: 本项目中对应 activity_main.xml
,放置所需的控件,可包含 Fragment。
Adapter.java: 本项目中对应 friendAdapter.java
,具体实现item.xml中的控件,实现数据加入方法;
Fragment.java: 本项目中对应friendFragment.java,具现tab02.xml,加入并传递对象数据至friendFragment.java中,实现加入数据。
MainActivity.java: 实现friendFragment.java的加入。
3. 使用RecyclerView的几种方法:
(1)直接在.xml文件中通过拖拽的方法使用RecyclerView,项目会自动添加依赖关系(注意添加约束);
(2)手动添加v7支持库,然后将支持库添加到
dependencies
部分。具体实现可至官网阅览
三、部分代码展示
1. Friend.java
package com.example.mywechat2;
public class Friend {
private int id;
private int imageid;
private String name;
public Friend(int id, int imageid, String name) {
this.id = id;
this.imageid = imageid;
this.name = name;
}
public int getId() {
return id;
}
public int getImageid() {
return imageid;
}
public String getName() {
return name;
}
}
2. frdFragment.java
package com.example.mywechat2;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.recyclerview.widget.RecyclerView;
import androidx.recyclerview.widget.StaggeredGridLayoutManager;
import java.util.ArrayList;
import java.util.List;
public class frdFragment extends Fragment {
private List friendList = new ArrayList();
public frdFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
// return inflater.inflate(R.layout.tab02, container, false);
View view = inflater.inflate(R.layout.tab02, container, false);
RecyclerView recyclerView = view.findViewById(R.id.RecyclerView);
initFrd();
StaggeredGridLayoutManager manager = new StaggeredGridLayoutManager(2,StaggeredGridLayoutManager.VERTICAL);
recyclerView.setLayoutManager(manager);
friendAdapter adapter = new friendAdapter(friendList);
recyclerView.setAdapter(adapter);
return view;
}
private void initFrd() {
for(int i = 0; i < 10; i++) {
Friend frdGaga=new Friend(i, R.drawable.lady_gaga, "Lady Gaga");
friendList.add(frdGaga);
Friend frdAdam=new Friend(i, R.drawable.adam, "Adam Levin");
friendList.add(frdAdam);
Friend frdAdele=new Friend(i, R.drawable.adele, "Adele Adkins");
friendList.add(frdAdele);
Friend frdGreyson=new Friend(i, R.drawable.greyson, "Greyson Chance");
friendList.add(frdGreyson);
Friend frdRihanna=new Friend(i, R.drawable.myrihanna, "Rihanna Fenty");
friendList.add(frdRihanna);
Friend frdLana=new Friend(i, R.drawable.lana, "Lana Del Rey");
friendList.add(frdLana);
Friend frdKaty=new Friend(i, R.drawable.katy, "Lady Gaga");
friendList.add(frdKaty);
Friend frdLorde=new Friend(i, R.drawable.lorde, "Katy Perry");
friendList.add(frdLorde);
Friend frdBruno=new Friend(i, R.drawable.bruno_mars, "Bruno Mars");
friendList.add(frdBruno);
Friend frdTroye=new Friend(i, R.drawable.troye, "Troye Sivan");
friendList.add(frdTroye);
}
}
}
比较关键的还有friendAdapter.java,在此就不一一展示了,感兴趣的可以看我的对应源码。
四、实现效果本次项目对应源码
--结束END--
本文标题: Android Studio开发(二)使用RecyclerView
本文链接: https://lsjlt.com/news/29254.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0