7

鉴于:

  1. 屏幕上垂直放置的两个元素(ViewPager 和 Fragment)
  2. 当前选中的第一个片段 (ViewFlipper) 中的操作在顶部片段中基于文本的视图和基于 WebView 的视图之间切换,并隐藏/显示底部片段。

观察到的:

  1. 隐藏底部片段会留下底部片段所在的空白空间。

我尝试了 Relative 和 LinearLayout (将顶部片段设置为weight=1),但在底部片段被删除后两者都没有效果我底部仍然有空白空间

这是顶级布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<android.support.v4.view.ViewPager
    android:id="@+id/pager"
    android:layout_width="fill_parent"
    android:layout_height="0dip" android:layout_weight="1"/>

<!-- This gets replaced with appropriate fragment at run time -->
<LinearLayout
    android:id="@+id/scrollFragmentPlaceholder"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:minHeight="110dip" />
</LinearLayout>

这是切换片段的代码

    Fragment scroll = getSupportFragmentManager().findFragmentById(R.id.scrollFragment);
    if (scroll.isHidden() == isWebView)
        return; // already handled, do nothing
    FragmentTransaction tr = getSupportFragmentManager().beginTransaction();
    if (scroll != null && scroll.isAdded()) {
        if (isWebView) {
            tr.hide(scroll);
        } else
            tr.show(scroll);
    }
    tr.commit();

这是它的外观: 底部片段被隐藏

4

1 回答 1

16

一个月后,我想出了如何去做。事实证明,仅仅隐藏片段是不够的,基本上我需要隐藏/显示包含片段的外壳。它仍然是最初在 XML 中定义的 LinearLayout。事实上,在原始布局上设置可见性以显示/隐藏片段就足够了。所以问题中的代码现在看起来像这样:

public void onJobViewToggled(final boolean isWebView) {
    if (isFinishing())
        return;
    final Fragment scroll = getSupportFragmentManager().findFragmentById(R.id.scrollFragment);
    if (scroll.isHidden() == isWebView)
        return; // already handled, do nothing
    final FragmentTransaction tr = getSupportFragmentManager().beginTransaction();
    if (scroll != null && scroll.isAdded()) {
        if (isWebView) {
            tr.hide(scroll);
            // shell is the original placeholder
            shell.setVisibility(View.GONE);
        } else {
            tr.show(scroll);
            shell.setVisibility(View.VISIBLE);
        }
    }
    tr.commit();
}

请注意,您仍然希望显示/隐藏片段以使其正常工作

于 2012-06-13T05:37:32.783 回答