Scrollview包含viewpager和一个linearlayout

时间:2017-04-19 17:04:10

标签: android android-layout android-fragments android-viewpager android-scrollview

我尝试使用一个ViewPager创建一个可滚动的视图,该视图将占据屏幕的90%,然后是ViewPager内有关图像的一些有用信息。

但是,当我添加ScrollView窗口小部件时,即使设置android:fillViewport="true",所有尺寸和重量都不起作用。这是我的布局。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
    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">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:weightSum="100"
        android:scrollbars="vertical">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/background_light"
            android:elevation="0dp"
            android:minHeight="?attr/actionBarSize"
            android:theme="?attr/actionBarTheme"
            app:popupTheme="?android:attr/homeAsUpIndicator" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_weight="90"
            android:orientation="vertical"
            android:padding="50dip">

            <android.support.v4.view.ViewPager
                android:id="@+id/product_sheet_viewpager"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>
        </LinearLayout>

        <TextView
            android:id="@+id/product_sheet_description"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="bbb"/>

        <TextView
            android:id="@+id/product_sheet_color"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="Color: Yellow" />

        <TextView
            android:id="@+id/product_sheet_reference"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="Ref: 2049/889/300" />

    </LinearLayout>
</android.support.v4.widget.NestedScrollView>

2 个答案:

答案 0 :(得分:0)

移除android:fillViewport="true"并将layout_height的{​​{1}}设置为NestedScrollView

所以这里的最终布局应该是这样的。

match_parent

答案 1 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"

    >

    <RelativeLayout
        android:id="@+id/relativeLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="5dp"
        android:paddingTop="5dp"
        android:layout_above="@+id/relativeLayoutBottom"
        >
        <android.support.v4.view.ViewPager
            android:id="@+id/viewPagerPlanDetailBroucher"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:columnWidth="250dp"
            android:numColumns="auto_fit"
            android:verticalSpacing="1dp"
            android:horizontalSpacing="1dp"
            android:layout_marginRight="50dp"
            android:layout_marginLeft="50dp"
            >
        </android.support.v4.view.ViewPager>
        </RelativeLayout>

    <RelativeLayout
        android:id="@+id/relativeLayoutBottom"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="5dp"

        android:paddingTop="5dp"
        >
        <TextView
            android:id="@+id/product_sheet_description"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="bbb"/>

        <TextView
            android:id="@+id/product_sheet_color"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_below="@+id/product_sheet_description"
            android:text="Color: Yellow" />

        <TextView
            android:id="@+id/product_sheet_reference"
            android:layout_below="@+id/product_sheet_color"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="Ref: 2049/889/300" />

    </RelativeLayout>
</RelativeLayout>