android开发 Fragment嵌套调用常见错误
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也跟着隐藏,屏幕将一片空白。
此文章仅供大家出现问题时,提供一个思路,并不是技术贴,望大神们勿喷
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。