1. 程式人生 > >解決fragmentTransaction.replace不能全屏

解決fragmentTransaction.replace不能全屏

ttr idt ont apk 。。 sso archive log clas

今天遇到個問題,使用fragmentTransaction.replace替換後的內容不能全屏。。

FragmentManager fragmentManager = getSupportFragmentManager();
  FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

  Fragment playFragment = new ColumnFragment();
  fragmentTransaction.replace(R.id.fragment_play, playFragment);
  fragmentTransaction.commit();


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#f00"
    >


    <LinearLayout
        android:background="#ccc"
        android:orientation="vertical"
        android:id="@+id/<strong>fragment_play</strong>"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    </LinearLayout>

</LinearLayout>
從網上查找了相關的資料。農民伯伯的。

可是不能解決。

http://www.cnblogs.com/over140/archive/2012/07/11/2586620.html

把要替換的內容使用FrameLayout後問題解決。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#f00"
    >


    <FrameLayout
        android:background="#ccc"
        android:orientation="vertical"
        android:id="@+id/fragment_play"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    </FrameLayout>

</LinearLayout>


技術分享技術分享

but。。。

why????

解決fragmentTransaction.replace不能全屏