我有一个LinearLayout,它有3个容器(也是LinearLayouts),它们有weight=1
。这是布局:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:divider="?android:dividerHorizontal"
android:orientation="horizontal"
android:showDividers="middle" >
<LinearLayout
android:id="@+id/container1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#FF0000"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:id="@+id/container2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#00FF00"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:id="@+id/container3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
</LinearLayout>
</LinearLayout>
在每个容器中,我添加1个片段:
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.add(R.id.container1, fragment1, TAG1);
transaction.add(R.id.container2, fragment2, TAG2);
transaction.add(R.id.container3, fragment3, TAG3);
transaction.commit();
所以现在他们的定位如下:
-------------------------------------
| | | |
| | | |
| | | |
| | | |
| | | |
| fragment1 | fragment2 | fragment3 |
| | | |
| | | |
| | | |
| | | |
| | | |
-------------------------------------
当我点击一个按钮时,我想首先隐藏它们与容器的碎片并显示fragment3
右侧的新片段。所以我会有这样的事情:
-------------------------------------
| | |
| | |
| | |
| | |
| | |
| fragment3 | fragment4 |
| | |
| | |
| | |
| | |
| | |
-------------------------------------
当我点击按钮时,我用它来隐藏片段:
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction transaction = fragmentManager.beginTransaction();
transaction.hide(fragment1);
transaction.hide(fragment2);
transaction.addToBackStack(null);
transaction.commit();
它将碎片与其容器一起隐藏,但我得到的屏幕看起来像这样:
-------------------------------------
| | | |
| | | |
| | | |
| | | |
| | | |
| empty | empty | fragment3 |
| | | |
| | | |
| | | |
| | | |
| | | |
-------------------------------------
这里empty
表示完全空,没有片段,没有容器,没有,只有那里的空白空间。
所以,我的问题是如何在不留空格的情况下隐藏片段?
答案 0 :(得分:1)
我无法以这种方式工作,所以这是我的解决方案:
weight
我使用了wrap_content
。1/3
。这样我就可以获得与weight=1
相同的效果。答案 1 :(得分:1)
要隐藏他们的容器,您可以使用
View mView = findViewById(R.id.container);
mView.setVisibility(View.GONE); // Instead of View.INVISIBLE or View.VISIBLE
这会阻止您的容器占用任何空间,并且显然会隐藏该容器中的任何片段
fragmentTransaction.mFragment.hide.commit()
在你需要容器消失的情况下,我发现很大程度上没用。