防止相对布局中的视图在微调器中重叠

时间:2016-08-22 17:17:37

标签: android android-layout

我在微调器中使用此布局

k8s.command()

当第一个文本视图内容过长时,它们会重叠到第3个文本视图上。

我已经尝试了

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:mode="twoLine"
    android:paddingEnd="4dp">

    <TextView android:id="@+id/text"
        android:layout_width="match_parent"
        android:paddingLeft="15dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:textAppearance="?attr/textAppearanceListItem" />

    <TextView android:id="@+id/text2"
        android:layout_width="match_parent"
        android:paddingBottom="14dp"
        android:paddingLeft="15dp"
        android:layout_height="wrap_content"
        android:layout_below="@id/text"
        android:layout_alignStart="@id/text"
        android:textAppearance="?attr/textAppearanceListItemSmall" />

    <TextView android:id="@+id/text3"
        android:layout_width="match_parent"
        android:paddingLeft="15dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:textAppearance="?attr/textAppearanceListItemSmall"
        android:gravity="right" />


</RelativeLayout>

在第一个视图上什么也没做。我还尝试将layout_tostartof设置为text3,将layout_toleftof设置为text 3,使我的视图消失,可能会以某种方式离开微调器。

1 个答案:

答案 0 :(得分:0)

我将布局更改为TableLayout,如下所示

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:mode="twoLine"
    android:paddingEnd="4dp">

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView android:id="@+id/text"
            android:layout_width="290dp"
            android:paddingLeft="15dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:layout_weight="3"
            android:textAppearance="?attr/textAppearanceListItem" />

        <TextView android:id="@+id/text3"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:textAppearance="?attr/textAppearanceListItemSmall"
            android:gravity="right"
            android:layout_weight="1"
            android:layout_column="44" />
    </TableRow>

    <TextView android:id="@+id/text2"
        android:layout_width="match_parent"
        android:paddingBottom="14dp"
        android:paddingLeft="15dp"
        android:layout_height="wrap_content"
        android:layout_below="@id/text"
        android:layout_alignStart="@id/text"
        android:textAppearance="?attr/textAppearanceListItemSmall" />

</TableLayout>