尝试包装宽度受限视图链时出现问题

时间:2019-05-29 20:54:09

标签: android layout android-constraintlayout flow beta

我正在尝试使用新引入的ConstraintLayout Flow helper在链式包装模式下实现一种非常常见的纵向/横向布局灵活性方法。

我想自动将两个视图排成一行以横向显示,将另一个视图排成纵向,例如包裹以适合。我可以使用FlexboxLayout来实现这一点,但是我更喜欢扁平结构和ConstraintLayout的性能。

<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#B0B0B0">

    <androidx.constraintlayout.helper.widget.Flow
        android:layout_width="0dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:flow_wrapMode="chain"
        app:constraint_referenced_ids="view1,view2"
        android:layout_height="0dp" />

    <View
        android:id="@+id/view1"
        android:layout_width="0dp"
        android:layout_height="200dp"
        app:layout_constraintDimensionRatio="1:1"
        android:background="#808080"
        tools:ignore="MissingConstraints">
    </View>

    <View
        android:id="@+id/view2"
        android:layout_width="0dp"
        android:layout_height="200dp"
        app:layout_constraintDimensionRatio="1:1"
        android:background="#E0E0E0"
        tools:ignore="MissingConstraints">
    </View>

</androidx.constraintlayout.widget.ConstraintLayout>

我将其用于景观,这很好:

landscape

但是我得到的是人像:

portrait, unexpected

如果我将固定宽度设置为200dp(对于其他情况也可以设置wrap_content),那么一切都会按预期进行:

portrait, expected

由于ConstraintLayout 2.0.0是beta版本,并且最近的更新日志报告了关于包装支持中的修复的信息,因此我认为这是一个错误。

但是也许我缺少什么?谢谢

1 个答案:

答案 0 :(得分:0)

Dim strResult, objItem, arrayItem On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_Battery") arrayItems = Array("Name", "Availability", "BatteryStatus", "Chemistry") For Each objItem in colItems For Each arrayItem In arrayItems strResult = Join(objItem.Properties_(arrayItem)) Next WScript.Echo strResult Next 小部件的默认方向是水平的。因此,它需要知道其引用的窗口小部件的Flow值。

似乎layout_width无法基于Flow计算这些值(至少在工具预览中没有。我没有测试它在运行时的行为)。

在您的代码中,您可以交换app:layout_constraintDimensionRatiolayout_width值以获得所需的结果。

layout_height

但是,请记住,仅当引用的窗口小部件不适合指定方向(默认值:水平)时,才会发生链接/包装。在我的代码中,我必须将<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:ignore="MissingConstraints"> <androidx.constraintlayout.helper.widget.Flow android:layout_width="match_parent" android:layout_height="match_parent" app:constraint_referenced_ids="view_red, view_blue" app:flow_wrapMode="chain"/> <View android:id="@+id/view_red" android:layout_width="300dp" android:layout_height="0dp" android:background="#C62828" app:layout_constraintDimensionRatio="1:1"/> <View android:id="@+id/view_blue" android:layout_width="300dp" android:layout_height="0dp" android:background="#1565C0" app:layout_constraintDimensionRatio="1:1"/> </androidx.constraintlayout.widget.ConstraintLayout> 设置为300dp才能在工具预览中进行链接。

因此,例如,如果您在平板电脑上运行,则由于有更多的水平空间可容纳小部件,因此使用此方法不能保证小部件将垂直放置。