3

我在布局中有 2 个视图 - TextView 和 Button。TextView 对齐/锚定到左侧,按钮位于右侧。

我想要实现的是 Button 的自然“换行行为”。当 TextView 足够宽以至于按钮没有空间(在同一行)时,它应该移动到 TextView 下方,同时仍锚定在右侧

以下是我想要实现的布局的 3 个场景:

小样


我试图用 FlexBoxLayout 来做这个,但是包装后按钮出现在左侧。

<com.google.android.flexbox.FlexboxLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:flexDirection="row"
    app:flexWrap="wrap"
    app:justifyContent="space_between"
   >


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="text text"
        android:gravity="start"
        />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="end"
        android:text="Button"
        />

</com.google.android.flexbox.FlexboxLayout>

那么我该怎么做呢?它不需要是 FlexBox,我可以使用任何布局,甚至是第 3 方。

4

3 回答 3

3

在父级中使用 justifyContent="flex_end" 并将 layout_flexGrow 设置为子级,这样对我有用。

<com.google.android.flexbox.FlexboxLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    app:flexDirection="row"
    app:flexWrap="wrap"
    app:justifyContent="flex_end">

    <TextView
        android:id="@+id/textview2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:text="blah blah"
        app:layout_flexGrow="1" />

    <TextView
        android:id="@+id/textview3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:text="( . )( . )"
        app:layout_flexGrow="0" />
</com.google.android.flexbox.FlexboxLayout>
于 2019-04-24T07:14:20.700 回答
1

无需第 3 方布局。ConstraintLayout 应该绰绰有余 - 对代码进行一些小调整。

您的 TextView 将具有简单的约束,设置为父布局(开始、顶部、结束)。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools">

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="48dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="Text text text text text text" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="@+id/text" />
</android.support.constraint.ConstraintLayout>

在代码中,只需检查 TextView 的宽度并将其与父级的宽度进行比较(基本上检查它应该与按钮重叠)。

如果它确实发生了变化(您必须在代码中执行此操作,但这是原则):

app:layout_constraintTop_toTopOf="@+id/text"

app:layout_constraintTop_toBottomOf="@+id/text"

如果您需要动态执行此操作,ConstraintLayout 具有简洁的“关键帧动画”功能,可在您更改约束时创建精美的动画。

于 2018-11-28T07:51:07.673 回答
0

似乎没有办法用 Flexbox 做到这一点。当您膨胀资源(onCreateView()或类似的东西)时,我会以编程方式进行。两个视图的父级都是RelativeLayout,当组合宽度不超过RelativeLayout 的宽度时, Button 与TextView顶部对齐,当宽度大于该宽度时,Button 与TextView底部对齐。

于 2018-11-27T23:14:25.080 回答