2

我有一个包含 4 个 SherlockFragment 的 viewpager(带有 actionbar sherlock),都在一个 SherlockFragmentActivity 中。

每个选项卡都有自己的 backStack(我可以在每个 SherlockFragment 上堆叠几个片段)

我想要做的是当我在列表中选择一个项目时,我想让 ViewStub 可见(这是一个播放器)

我的问题是ViewPager 不会自行调整。播放器变得可见,但在查看器后面。

这是主要的 SherlockFragmentActivity

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    style="@style/ActivityDark"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    tools:context=".ActivityMain" >

    <ViewStub
        android:id="@+id/main_stubplayer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:inflatedId="@+id/fragment_allzic_player"
        android:layout="@layout/view_player" />

    <android.support.v4.view.ViewPager
        android:id="@+id/main_pager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_below="@+id/main_stubplayer" >
    </android.support.v4.view.ViewPager>

</RelativeLayout>

这是ViewStub

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/banner_player_layout"
    android:layout_width="match_parent"
    android:layout_height="@dimen/cell_height"
    android:background="@color/clr_player"
    android:clickable="true" >

    [...the content does not matter the height is fixe]
</RelativeLayout>

这是我如何可见的:

public void showPlayerBanner(String title) {
    if (mViewPlayer == null) {
        ViewStub stub = (ViewStub) findViewById(R.id.main_stubplayer);
        mViewPlayer = stub.inflate();
    } else {
        mViewPlayer.setVisibility(View.VISIBLE);
    }
}
4

1 回答 1

2

尝试使用 LinearLayout 垂直而不是 RelativeLayout 并将最小/最大高度设置为视图。

要了解有关布局差异的更多信息,请参阅文章here

于 2014-03-24T17:45:30.800 回答