标签:android开发 fragment fragmeng 嵌套 视图空白 视图覆盖
在activity中有时需要嵌套调用fragment,但嵌套调用往往带来视图的显示与预期的不一样或是fragment的切换有问题。在使用时要注意几点:<pre name="code" class="html"><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:baselineAligned="false" android:background="#339922" android:id="@+id/mainfrag"> <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:text="hahaha" /> </LinearLayout>
子fragment的xml文件:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:baselineAligned="false" > <fragment android:id="@+id/fragment1" android:name="com.fff.test.Fragment1" android:layout_width="0dip" android:layout_height="match_parent" android:layout_weight="1" /> <fragment android:id="@+id/fragment2" android:name="com.fff.test.Fragment2" android:layout_width="0dip" android:layout_height="match_parent" android:layout_weight="1" /> </LinearLayout>
只有父的视图显示,并没有嵌套到子的视图中,分析原因是父的视图一直显示而没有被覆盖,且因为其布局:
android:layout_width="match_parent" android:layout_height="match_parent"
为了让子Fragment可以充满屏幕,父Fragment必须用FrameLayout的布局方式。即修改父.xml文件为:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mainfrag" android:layout_width="match_parent" android:layout_height="match_parent" />
2、要在各个Fragment间切换,必须要有一个fragmentmanager可以管理所有的fragment,这样在进行切换时才能用fragmengmanager调用transaction对这些fragment进行操作。
比如如下结构的demo:
Mainactivity包含fragment1,fragment1又包含fragment2.这样为了让fragment1与fragmeng2切换,在Mainactivity中包含fragmengmanager fm来对1、2切换,代码如下(在Mainactivity.java中):
public static void switchContent(Fragment from,Fragment to,String toTag){ if(from!=to){ FragmentTransaction transaction=fm.beginTransaction(); transaction.setCustomAnimations(android.R.anim.fade_in, android.R.anim.fade_out); if(!to.isAdded()){ transaction.hide(from).add(R.id.container, to,toTag).commit(); }else{ transaction.hide(from).show(to).commit(); } } }
transaction.hide(fragment1).add(R.id.container, fragment2,"frag2").commit();时由于,将fragment1隐藏,此事fragment2也跟着隐藏,屏幕将一片空白。
此文章仅供大家出现问题时,提供一个思路,并不是技术贴,望大神们勿喷
android开发 Fragment嵌套调用常见错误,布布扣,bubuko.com
标签:android开发 fragment fragmeng 嵌套 视图空白 视图覆盖
原文地址:http://blog.csdn.net/yunfuyiren/article/details/25928039