を使用してリストアイテムをプレビューする方法を見つけました
tools:listitem="@layout/my_item_layout"
ただし、Androidスタジオはrecyclerviewを垂直リストとしてプレビューしています。 Android StudioにLinearLayoutManager
を使用してレイアウトプレビューを水平に表示するように指示する方法はありますか?
LayoutManagerを追加し、水平方向を設定します。
ここに例を示します:
<Android.support.v7.widget.RecyclerView
Android:id="@+id/homesRecyclerView"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:orientation="horizontal"
app:layoutManager="Android.support.v7.widget.LinearLayoutManager"
Android:layout_centerVertical="true"
/>
Androidxライブラリを使用している場合:
<androidx.recyclerview.widget.RecyclerView
Android:id="@+id/homesRecyclerView"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:orientation="horizontal"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
Android:layout_centerVertical="true"
/>
アクセプターの回答は正確に機能します。 androidxの場合、これをrecyclerViewで使用します
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" Android:orientation="horizontal"