fragment的注意事项

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
        android:id="@+id/picture"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:src="@drawable/book"
        />
    <fragment
        android:id="@+id/shopping_car_fragment"
        android:name="com.example.bookonline.ShoppingCar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"

    />
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <fragment
            android:id="@+id/variety_list"
            android:name="com.example.bookonline.BookListFragment"
            android:layout_marginLeft="10dp"
            android:layout_width="75dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            />
        <FrameLayout
            android:id="@+id/book_container"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="4"
            />
        </LinearLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:id="@+id/bn_variety"
            android:text="分类"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="#00000000"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:layout_weight="1"
            />
        <Button
            android:id="@+id/shopping_car"
            android:text="购物车"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="#00000000"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:layout_weight="1"
            />
        <Button
            android:id="@+id/myself"
            android:text="我的"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="#00000000"
            android:layout_alignParentRight="true"
            android:layout_alignParentBottom="true"
            android:layout_weight="1"
            />
        </RelativeLayout>
</LinearLayout>

  

如果你对布局中的Fragment进行了比重分配了的话       android:layout_weight="1"   

你在使用Fragment管理与事物进行操作的时候

        mFragments = new Fragment[2];
        fragmentManager = getFragmentManager();
        mFragments[0] = fragmentManager.findFragmentById(R.id.variety_list);
        mFragments[1] = fragmentManager.findFragmentById(R.id.shopping_car_fragment);
//        mFragments[2] = fragmentManager.findFragmentById(R.id.myself_fragment);
        fragmentTransaction = fragmentManager.beginTransaction()
                .hide(mFragments[0]).hide(mFragments[1]);
        fragmentTransaction.show(mFragments[0]).commit();
使用hide()隐藏对应的fragment,内容被隐藏了,但是会留下对应比重android:layout_weight="1"   大小的白板

所以这里要慎重使用android:layout_weight

注意:

了解hide()与replace()之间的区别    

hide()如果你重新show()它 它将会显示以前隐藏时候的界面  , 只是把他隐藏起来,东西没有变化

replace()是将fragment给替换掉,再显示该fragment,将会回到最开始的时候

这是我根据fragment做的一个在线书店客户段程序

http://download.csdn.net/detail/u014762992/9570935

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值