码迷,mamicode.com
首页 > 移动开发 > 详细

android开发 Fragment嵌套调用常见错误

时间:2014-05-16 01:24:16      阅读:367      评论:0      收藏:0      [点我收藏+]

标签:android开发   fragment   fragmeng 嵌套   视图空白   视图覆盖   

在activity中有时需要嵌套调用fragment,但嵌套调用往往带来视图的显示与预期的不一样或是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>

此时运行的显示结果如下:

bubuko.com,布布扣


只有父的视图显示,并没有嵌套到子的视图中,分析原因是父的视图一直显示而没有被覆盖,且因为其布局:

 android:layout_width="match_parent"
    android:layout_height="match_parent"

为填充整个屏幕,所以无法显示。我们将layout_width与layout_height改为wrap_content,结果如下:

bubuko.com,布布扣

为了让子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"
 />

结果为:

bubuko.com,布布扣


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也跟着隐藏,屏幕将一片空白。


此文章仅供大家出现问题时,提供一个思路,并不是技术贴,望大神们勿喷

android开发 Fragment嵌套调用常见错误,布布扣,bubuko.com

android开发 Fragment嵌套调用常见错误

标签:android开发   fragment   fragmeng 嵌套   视图空白   视图覆盖   

原文地址:http://blog.csdn.net/yunfuyiren/article/details/25928039

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!