在android中动态调整片段大小

时间:2014-11-19 10:01:32

标签: android android-layout android-fragments android-xml

我有一个片段可以填满所有的屏幕。现在,如果我添加一个新片段,我希望每个片段填充一半的屏幕。我该怎么做?enter image description here

我尝试了这种布局并以编程方式添加了片段。但它没有用。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="tech.test.org.game.Game$PlaceholderFragment">


    <RelativeLayout
        android:id="@+id/relativeLayout"
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight="50">


    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/relativeLayout2"
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_below="@+id/relativeLayout"
        android:layout_weight="50"
        >
        </RelativeLayout>

</RelativeLayout>

感谢。

2 个答案:

答案 0 :(得分:3)

Kat-hat给出的答案也是正确的,但加载UI可能需要大量加载,这可能会妨碍性能。

    <RelativeLayout
        android:id="@+id/relativeLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="0.5"
   >

    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/relativeLayout2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="0.5"
        android:visibility="gone" >

        </RelativeLayout>

</LinearLayout>

当你添加第二个片段时,以编程方式将layout2可见性设置为可见。

findViewById(R.id.relativeLayout2).setVisibility(View.VISIBLE);

答案 1 :(得分:2)

使用线性布局代替相对布局并将布局设置为

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:weightSum="100" >

    <LinearLayout
        android:id="@+id/layout1"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="100" >

        <fragment
            android:id="@+id/fragment1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            >
        </fragment>
    </LinearLayout>

    <LinearLayout
        android:id="@+id/layout2"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="50"
        android:visibility="gone" >

        <fragment
            android:id="@+id/fragment2"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            >
        </fragment>
    </LinearLayout>

</LinearLayout>

当您添加第二个片段时,以编程方式将layout2可见性设置为visible,将layout1权重设置为50

LinearLayout layout1 = (LinearLayout) findViewById(R.id.layout1);
android.widget.LinearLayout.LayoutParams par = layout1.getLayoutParam();
par.weight =50;