5

使用材料设计 tablayout +viewpager材料设计 tablayout一切正常,但如果我试图将父视图作为 ScrollView 以便一旦用户尝试查看选项卡片段内容,我的整个屏幕就可以滚动,因为片段包含列表视图,所以它在小的高度变得非常低设备。添加滚动视图后,我的 viewpager 片段没有显示?在这种情况下如何克服?

    <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true">
<android.support.design.widget.CoordinatorLayout
    android:id="@+id/tabanim_maincontent"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/tabanim_appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
        <android.support.design.widget.TabLayout
            android:id="@+id/tabanim_tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

   </android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
        android:id="@+id/tabanim_viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

</android.support.design.widget.CoordinatorLayout>
</ScrollView>

我尝试过使用和不使用 CoOrdinator 布局,它们都没有工作

4

0 回答 0