更新於 2024/12/01閱讀時間約 3 分鐘

RecyclerView 資料列表-定義資料類別與實作項目佈局

【Android 入門指南】系列文章目錄:https://bit.ly/3TFgCzu
Android 線上課程教學影片:https://bit.ly/433Offj

課程摘要

本課程學習如何使用 RecyclerView 資料列表定義資料類別與實作項目佈局。

教學影片

若您無法順利觀看教學影片,請先登入您的 YouTube 帳號,然後點擊以下連結加入我們的頻道會員:

  • 一般會員:成為一般會員後,您將能夠觀看我們所提供的一般會員專屬線上課程。
  • 精實會員:成為精實會員後,您將能夠觀看我們所提供的精實會員專屬線上課程。

SampleItem.kt

data class SampleItem(val title: String, val description: String)

layout/item_list.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical">

<TextView
android:id="@+id/itemTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dp"
android:textStyle="bold"
android:padding="8dp"
tools:text="標題"/>

<TextView
android:id="@+id/itemDesc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14dp"
android:padding="8dp"
tools:text="內容"/>
</LinearLayout>
分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.