将RelativeLayout划分为3个相同的部分

时间:2016-06-05 13:02:26

标签: java android android-relativelayout

在我的布局中,我在活动的顶部有徽标。 现在我想将我的相对布局分成三个相同的部分,以包含3个相对布局。 是否有可能为相对布局增加重量? 我如何将其划分为3个相同的相对布局?

这是我的代码:

  <RelativeLayout 
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                tools:context=".MainActivity">
<ImageView android:layout_width="wrap_content"
           android:background="@drawable/logo"
           android:id="@+id/logo"
           android:layout_centerHorizontal="true"
           android:layout_height="wrap_content"/>
<RelativeLayout android:layout_width="match_parent"
                android:layout_below="@+id/logo"
                android:layout_height="match_parent">


</RelativeLayout>

</RelativeLayout>

3 个答案:

答案 0 :(得分:2)

没有RelativeLayout不支持权重,只需使用线性布局,将给出期望结果:

<LinearLayout 
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    orientation:"vertical"
    tools:context=".MainActivity">

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

               <ImageView android:layout_width="wrap_content"
                   android:background="@drawable/logo"
                   android:id="@+id/logo"
                   android:layout_centerHorizontal="true"
                   android:layout_height="wrap_content"/>
    </RelativeLayout>

    <RelativeLayout 
               android:layout_height="0dp"
               android:layout_width="wrap_content"
               android:layout_weight="1">
    </RelativeLayout>

    <RelativeLayout 
               android:layout_height="0dp"
               android:layout_width="wrap_content"
               android:layout_weight="1">
    </RelativeLayout>
</LinearLayout>

答案 1 :(得分:0)

像这样更改你的代码:

ConnectivityManager cm =
        (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);

NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
boolean isConnected = activeNetwork != null &&
                      activeNetwork.isConnectedOrConnecting();

答案 2 :(得分:0)

<LinearLayout 
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="3"
    orientation:"vertical"
    >

    <RelativeLayout android:layout_height="0dp" android:layout_width="wrap_content" android:layout_weight="1/>
    <RelativeLayout android:layout_height="0dp" android:layout_width="wrap_content" android:layout_weight="1/>
    <RelativeLayout android:layout_height="0dp" android:layout_width="wrap_content" android:layout_weight="1/>

</LinearLayout>