首页 > 代码库 > 解决fragmentTransaction.replace不能全屏
解决fragmentTransaction.replace不能全屏
今天遇到个问题,使用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不能全屏
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。