将结尾与元素开始相对布局对齐

时间:2018-09-19 20:06:03

标签: android android-layout

我希望我的一个文本框仅将内容包装到下一个文本框的开头。

现在的屏幕截图:

enter image description here

以及我想要的方式:

enter image description here

我本以为可以设置宽度,但是在不同尺寸的屏幕上无法正确显示,我希望它在此处结束,以便在内容超出该范围时可以将其省略。

请帮助!

布局:

<?php

$xPostName =   $xml->up;

//load xml file to edit

$xml = simplexml_load_file($_GET['id'].'/info.xml');

$xml->up = $xPostName +1;

// save the updated document

$xml->asXML($_GET['id'].'/info.xml');

echo "done";

?>

2 个答案:

答案 0 :(得分:1)

为此使用LinearLayout ...

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="1"
    android:padding="10dp">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="text"
        android:layout_weight=".4"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="12/12/1212"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="9:00"/>
    </LinearLayout>

</LinearLayout>

结果:

enter image description here

答案 1 :(得分:1)

添加:

android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/textView_date"

并在您的第一个TextView中将宽度设置为wrap_content

<TextView
        android:id="@+id/textView_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dp"
        android:layout_marginEnd="5dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="5dp"
        android:layout_marginStart="5dp"
        android:layout_marginTop="5dp"
        android:layout_toLeftOf="@+id/textView_date"
        android:layout_alignParentLeft="true"
        android:ellipsize="end"
        android:maxLines="1"
        android:scrollHorizontally="true"
        android:textColor="@color/colorPrimaryDark"
        android:textSize="30sp"
        tools:text="PlaceHolder" />

result