相对布局:两个文本视图自动重新调整大小

时间:2017-10-31 20:52:02

标签: android android-layout

如何设置基于可用空间更新UI的布局。例如,我在相对布局中有两个TextView。首先,使用一个来显示可能根据内容而变化的描述。其次,用于显示该内容的日期。

目前,我在TextView.But描述下面显示日期TextView,我需要根据描述Textview长度更改日期TextView位置。

enter image description here

2 个答案:

答案 0 :(得分:1)

您可以使用Google's FlexboxLayout library实现此目的。

<?xml version="1.0" encoding="utf-8"?>
<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="match_parent"
    android:layout_height="match_parent"
    app:flexWrap="wrap"
    app:justifyContent="flex_end"
    app:alignItems="flex_start"
    app:alignContent="flex_start">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello world!"
        app:layout_flexGrow="1"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Oct 26, 2017 at 1:36 AM"/>

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

enter image description here enter image description here

答案 1 :(得分:0)

这就是你在寻找什么?

enter image description here

enter image description here

<LinearLayout 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="wrap_content"
android:orientation="horizontal"
tools:context="test.example.solutions.MainActivity">

<TextView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.5"
    android:padding="5dp"
    android:text="test" />

<TextView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.4"
    android:padding="5dp"
    android:text="Oct 26, 2017 at 4:44PM" />

</LinearLayout>