从右到左对齐项目

从右到左对齐项目

本文介绍了android ConstraintLayout Flow:从右到左对齐项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 android ConstraintLayout Flow ,我必须从右到左排列项目,如下所示:

I'm using android ConstraintLayout Flow , and I have to arrange items from right to left , something like this :

XML 代码:

<androidx.constraintlayout.helper.widget.Flow
            android:id="@+id/flow"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            app:flow_horizontalStyle="spread_inside"
            app:flow_maxElementsWrap="4"
            app:flow_verticalGap="29dp"
            app:flow_wrapMode="aligned"
            app:constraint_referenced_ids="item1 , item2 , ..."
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/headerTextView" />

注意:我们的 supportsRtl 在 Manifest 中设置了 False ...

Note : our supportsRtl set False in the Manifest ...

我该怎么做?!

推荐答案

我找到并有效的解决方案是在父级(我们的 ConstraintLayout)上设置 rotationY=180f,然后在 ConstraintLayout 中的每个项目上设置 rotationY=180f

The solution I found and it worked was to set rotationY=180f on parent (our ConstraintLayout) and then set rotationY=180f on each item we have in the ConstraintLayout too.

这篇关于android ConstraintLayout Flow:从右到左对齐项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 07:31