0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

RecyclerView で Item のプレビューを表示する

Posted at

xml で RecyclerView を実装している時、何もしないと以下のような形で item のプレビューが表示されない。

スクリーンショット 2025-01-21 13.19.07.png

その場合、tools:listitem属性を RecyclerView に追加することで、プレビューに Item が表示されるようになる。

recycler.xml
<androidx.recyclerview.widget.RecyclerView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    tools:listitem="@layout/item"/>

スクリーンショット 2025-01-21 13.22.54.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?