<?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做的一个在线书店客户段程序