iT邦幫忙

2022 iThome 鐵人賽

DAY 11
0
Mobile Development

Android Studio 30天學習系列 第 11

Android Studio 30天學習-DAY11_RecyclerView01

  • 分享至 

  • xImage
  •  

RecyclerView概述:

RecyclerView在Android Studio的功能是一項可以上下捲動的橫列欄。

一、dependencies依賴

這個依賴可以使用關鍵字搜尋版本來套入不同的Android版本

implementation "androidx.recyclerview:recyclerview-selection:1.1.0"
implementation 'androidx.recyclerview:recyclerview:1.2.1'

套入dependencies後需要點選右上方的Sync Now才可以後續操作

二、刻劃版面

選擇需要放置的layout中即可,這邊筆記是開啟新檔案所以在主頁面的.xml檔案放置recyclerview元件

  1. activity_main.xml
<?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:layout_width="match_parent"
        android:layout_height="match_parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

XML畫面呈現預覽

  1. listitem.xml
    此時需要在Layout資料夾再創立新的XML檔案
<?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">

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

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

            <TextView
                android:id="@+id/textView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="TextView" />

            <TextView
                android:id="@+id/textView2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="TextView" />
            <TextView
                android:id="@+id/textView3"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="TextView" />
            <TextView
                android:id="@+id/textView4"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="TextView" />
        </LinearLayout>

    </LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

XML預覽呈現

備註:內部的顯示文字可以先預設,最後顯示的文字會是以後面設定為主。

注意:這個XML的layout高度必須設定wrap_content,不然呈現出來的結果會不好看出成功與否。


預覽結果:可以明顯看出藍色線條只到文字的大小而不會整個XML都占滿。

以上為畫面的刻劃,可以結合GuideLine進行刻劃達到不同畫面比例皆可以通用的效果。

三、 程式碼撰寫部分

  1. 建立一個Adapter轉接,在主程式的資料夾新增Java檔案。
    class ViewHolder extends RecyclerView.ViewHolder{

        private TextView tvname,tvdate,tvtime,tvrewardpoint;

        public ViewHolder(@NonNull View itemView) {
            super(itemView);

            tvname = itemView.findViewById(R.id.textView);
            tvdate = itemView.findViewById(R.id.textView2);
            tvtime = itemView.findViewById(R.id.textView3);
            tvrewardpoint = itemView.findViewById(R.id.textView4);
        }

        public void itemView(HashMap<String, String> stringStringHashMap) {
        }
    }


    @NonNull
    @Override
    public ListAdapter.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(parent.getContext())
                .inflate(R.layout.listitem,parent,false);
        return new ViewHolder(view);

    }

    @Override
    public void onBindViewHolder(@NonNull ListAdapter.ViewHolder holder, int position) {
        holder.tvname.setText(arrayList.get(position).get("name_infomation"));
        holder.tvdate.setText("YYYY/MM/DD");
        holder.tvtime.setText("hh/mm");
        holder.tvrewardpoint.setText(arrayList.get(position).get("rewardpoint_infomation"));

    }

    @Override
    public int getItemCount() {
        return arrayList.size();
    }
  1. MainActivity.java主程式
    ListAdapter listAdapter;
    RecyclerView recyclerView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        recyclerView = findViewById(R.id.recyclerview);
        recyclerView.setLayoutManager(new LinearLayoutManager(this));
        recyclerView.addItemDecoration(new DividerItemDecoration(this,DividerItemDecoration.VERTICAL));
        listAdapter = new ListAdapter();
        recyclerView.setAdapter(listAdapter);

        listAdapter.makedata();
    }
  1. 我這邊在Adapter新增了假資料。
    這邊有使用HashMap,用法如下方的註解,前面是Key也就是名字用來連接後面的資料Value,取得資料時只需要打Key就可以了。
    public void makedata(){
     //HashMap.put(Key,Value);    
        for (int i = 0;i<100;i++){
            HashMap<String,String> hashMap = new HashMap<>();
            hashMap.put("name_infomation","商店代號:"+String.format("%02d",i+1));
            hashMap.put("date_infomation",String.valueOf(new Random().nextInt(80) + 20));
            hashMap.put("time_infomation",String.valueOf(new Random().nextInt(80) + 20));
            hashMap.put("rewardpoint_infomation",String.valueOf(
                    (Integer.parseInt(hashMap.get("date_infomation"))
                            +(Integer.parseInt(hashMap.get("time_infomation"))))^2+48/99*2
            ));

            arrayList.add(hashMap);
        }
    }

這樣就成功新增RecyclerView了!!


上一篇
Android Studio 30天學習-DAY10_TabLayout、ViewPager滑動畫面
下一篇
Android Studio 30天學習-DAY12_RecyclerView(二)-點擊事件及Adapter跳轉事件
系列文
Android Studio 30天學習30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言