首页 > 代码库 > android开发 Fragment嵌套调用常见错误
android开发 Fragment嵌套调用常见错误
在activity中有时需要嵌套调用fragment,但嵌套调用往往带来视图的显示与预期的不一样或是fragment的切换有问题。在使用时要注意几点:
1、fragment中嵌套fragment,子fragment视图无法显示:
如下:
父fragment的.xml文件:
此时运行的显示结果如下:
为填充整个屏幕,所以无法显示。我们将layout_width与layout_height改为wrap_content,结果如下:
结果为:
在fragment1的.java文件中调用上述静态方法即可。这里不能在fragment1中用getChildFragmentManager对fragmeng2进行管理,因为这样会导致2作为1的子视图,在调用:
1、fragment中嵌套fragment,子fragment视图无法显示:
如下:
父fragment的.xml文件:
<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"
为填充整个屏幕,所以无法显示。我们将layout_width与layout_height改为wrap_content,结果如下:
为了让子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(); } } }
在fragment1的.java文件中调用上述静态方法即可。这里不能在fragment1中用getChildFragmentManager对fragmeng2进行管理,因为这样会导致2作为1的子视图,在调用:
transaction.hide(fragment1).add(R.id.container, fragment2,"frag2").commit();时由于,将fragment1隐藏,此事fragment2也跟着隐藏,屏幕将一片空白。
此文章仅供大家出现问题时,提供一个思路,并不是技术贴,望大神们勿喷
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。