gpt4 book ai didi

android - 如何在 xml 中更改回收器 View 的方向?

转载 作者:行者123 更新时间:2023-12-05 00:13:44 24 4
gpt4 key购买 nike

我有 2 个回收站 View 。 1 个水平和 1 个垂直。在设计页面中,第一个回收器的元素是水平的,第二个是垂直的,但是当我运行 then app 时,它们都是垂直的,我不知道是什么问题。

  <androidx.recyclerview.widget.RecyclerView
android:id="@+id/selected_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:orientation="horizontal"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/name_edit_text"
tools:listItem="@layout/item_participant_selected" />

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="120dp"
android:layout_marginBottom="@dimen/participants_padding_bottom"
android:clipToPadding="false"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
app:layout_constraintEnd_toEndOf="@id/selected_recycler_view"
app:layout_constraintStart_toStartOf="@id/selected_recycler_view"
app:layout_constraintTop_toBottomOf="@id/selected_recycler_view"
tools:listItem="@layout/item_participant" />

最佳答案

XML-

android:orientation="horizontal"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"

以编程方式-

RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false);
recyclerView.setLayoutManager(layoutManager);

关于android - 如何在 xml 中更改回收器 View 的方向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59451656/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com