不同屏幕尺寸的Android RelativeLayout问题

时间:2018-11-07 05:45:56

标签: android android-layout android-relativelayout

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="match_parent"
    tools:context="com.testing.testinglibraryapps.Main2Activity">

<RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

    </RelativeLayout>
    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

    </RelativeLayout>


</RelativeLayout>

如何将Android屏幕分为两部分。即一种相对布局应在屏幕的3/4部分,另一种应在1/4部分。

我应该在此处设置哪些属性以实现所需的布局

2 个答案:

答案 0 :(得分:5)

您可以这样做

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    android:weightSum="4"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:background="@android:color/holo_green_dark"
        >

        <!--Other Views Here-->

    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="@android:color/holo_red_dark"
        >

        <!--Other Views Here-->

    </RelativeLayout>

</LinearLayout>

输出:

Output

答案 1 :(得分:0)

此示例可以为您提供帮助。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    android:weightSum="4"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"

        >



    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"

        >



    </RelativeLayout>

</LinearLayout>