我是新來的android和我有一些問題。我創建了一個簡單的佈局有兩個片段,例如如下:片段活動片段內
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:id="@+id/fragment1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<FrameLayout
android:id="@+id/fragment2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
我要劃分這個佈局如下:1/3高度
layout_height的:
片段1的layout_height片段2:2/3高度
怎麼辦?
我用下面的代碼顯示片段1:
FragmentTransaction transaction =
getSupportFragmentManager().beginTransaction();
transaction.add(R.id.fragment1, firstfragment);
但我不知道如何表達FragmentActivity在fragment2?