android:layout_above="@+id/XXX"与android:layout_below="@+id/XXX"写法的区别

问题:在父控件为RelativeLayout的布局中,如果先写了一个ListView,再写了一个Button,

写法1:

    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
            android:id="@+id/listview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/button"
        />
    
如上的写法按钮可见。



写法2:

    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
            android:id="@+id/listview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />
    
如上的写法按钮不可见。

你可能感兴趣的:(android:layout_above="@+id/XXX"与android:layout_below="@+id/XXX"写法的区别)