如何防止相对布局崩溃

时间:2017-05-28 23:52:21

标签: android android-relativelayout

您好,我目前正在制作一个用相对布局

定义的设置菜单

enter image description here

不幸的是,当事情太小时,它会崩溃。有没有办法防止这种情况发生?解决这个问题的最佳做法是什么?最小宽度?包装

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="16dp"
    android:background="@drawable/outline"
    android:padding="16dp">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:text="Show my picture"
        android:textColor="#7E57C2"
        android:textSize="18dp"
        android:textStyle="bold" />

    <Switch
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

试试这个

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="16dp"
    android:padding="16dp">

    <Switch
        android:id="@+id/switch1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_toLeftOf="@id/switch1"
        android:text="Show my picture"
        android:textColor="#7E57C2"
        android:textSize="18dp"
        android:textStyle="bold" />

</RelativeLayout>

唯一的变化是,开关固定并与父右对齐,textview设置在开关的左侧。如果显示太小,textview将调整,不会与开关重叠。这里的关键是

android:layout_toLeftOf="@id/switch1"