Android - 使用scrollview问题

时间:2014-06-25 07:53:39

标签: android android-layout scrollview

我在我的活动中使用scrollview。 scrollview包含一个LinearLayout和该布局中的一些其他视图。还有另一个LinearLayout android:id="@+id/linLayoutImagesContainer"用于动态放置具有3个图像的图像项,就像Gridview中有三列一样。 所有其他事情都很完美。但是,如果我动态地将超过12行(i,e.36图像)添加到LinearLayout中,则滚动视图将变为空白而没有视图。 有谁能够帮我?提前谢谢。

我的xml布局:

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

<RelativeLayout
    android:id="@+id/relLayoutActionBar"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:background="@drawable/background_action_bar">

    <TextView
        android:id="@+id/textViewTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:gravity="center"
        android:text="Activity Detail"
        android:textColor="#ffffff"
        android:textSize="20sp"/>

    <ImageView
        android:id="@+id/ivButtonBack"
        android:layout_width="35dp"
        android:layout_height="20dp"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="5dp"
        android:background="@drawable/back_icon"
        android:padding="8dp"
        android:layout_marginLeft="10dp"
        android:textColor="#FFFFFF"
        android:textSize="14sp"/>
</RelativeLayout>

<RelativeLayout
    android:id="@+id/relLayoutTripBanner"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/relLayoutActionBar">

    <ImageView
        android:id="@+id/imageViewActivityBanner"
        android:layout_width="match_parent"
        android:layout_height="220dp"
        android:scaleType="centerCrop"
        android:background="@drawable/default_activity_banner"/>

    <!--<Button
        android:id="@+id/buttonActivityBanner"
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:background="@null"/>-->
</RelativeLayout>

<ScrollView
    android:id="@+id/parallaxScroll"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"
    android:layout_below="@+id/relLayoutActionBar"
    android:layout_above="@+id/relLayoutActionFooter">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingTop="220dp">

        <Button
            android:id="@+id/buttonActivityBanner"
            android:layout_width="match_parent"
            android:layout_height="220dp"
            android:background="@null"
            android:layout_marginTop="-220dp"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:background="#ffffffff"
            android:alpha="0.9">

            <TextView
                android:id="@+id/textViewTripDescription"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:padding="10dp"
                android:alpha="0.9"
                android:background="#ffffffff"
                android:text="Activity (Description)"
                />

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="35dp"
                android:layout_margin="10dp"

                android:background="@drawable/layout_round_border">

                <TextView
                    android:id="@+id/textViewImages"
                    android:layout_width="wrap_content"
                    android:layout_height="35dp"
                    android:layout_alignParentLeft="true"
                    android:gravity="center"
                    android:text="Images (0)"
                    android:textSize="18sp"
                    android:textColor="@android:color/white"
                    android:background="@drawable/layout_left_round_colored"
                    android:layout_toLeftOf="@+id/viewDate"
                    />

                <View
                    android:id="@+id/viewDate"
                    android:layout_width="0dp"
                    android:layout_height="60dp"
                    android:layout_alignParentTop="true"
                    android:layout_centerHorizontal="true"
                    />

                <TextView
                    android:id="@+id/textViewVideos"
                    android:layout_width="wrap_content"
                    android:layout_height="35dp"
                    android:layout_alignEnd="@id/textViewImages"
                    android:gravity="center"
                    android:text="Videos (0)"
                    android:textColor="#ffec6221"
                    android:textSize="18sp"
                    android:layout_alignParentTop="true"
                    android:layout_alignParentRight="true"
                    android:layout_toRightOf="@+id/viewDate"/>
            </RelativeLayout>

            <LinearLayout
                android:id="@+id/linLayoutImagesContainer"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp">
            </LinearLayout>

        </LinearLayout>
    </LinearLayout>
</ScrollView>

1 个答案:

答案 0 :(得分:0)

请尝试这种方式,希望这有助于您解决问题。

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

    <RelativeLayout
        android:id="@+id/relLayoutActionBar"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@drawable/background_action_bar">

        <TextView
            android:id="@+id/textViewTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:gravity="center"
            android:text="Activity Detail"
            android:textColor="#ffffff"
            android:textSize="20sp"/>

        <ImageView
            android:id="@+id/ivButtonBack"
            android:layout_width="35dp"
            android:layout_height="20dp"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="5dp"
            android:background="@drawable/back_icon"
            android:padding="8dp"
            android:layout_marginLeft="10dp"
            android:textColor="#FFFFFF"
            android:textSize="14sp"/>
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/relLayoutTripBanner"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/imageViewActivityBanner"
            android:layout_width="match_parent"
            android:layout_height="220dp"
            android:scaleType="centerCrop"
            android:background="@drawable/default_activity_banner"/>
    </RelativeLayout>

    <ScrollView
        android:id="@+id/parallaxScroll"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:fillViewport="true">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingTop="220dp">

            <Button
                android:id="@+id/buttonActivityBanner"
                android:layout_width="match_parent"
                android:layout_height="220dp"
                android:background="@null"
                android:layout_marginTop="-220dp"/>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:background="#ffffffff"
                android:alpha="0.9">

                <TextView
                    android:id="@+id/textViewTripDescription"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textAppearance="?android:attr/textAppearanceMedium"
                    android:padding="10dp"
                    android:alpha="0.9"
                    android:background="#ffffffff"
                    android:text="Activity (Description)"
                    />

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="35dp"
                    android:layout_margin="10dp"

                    android:background="@drawable/layout_round_border">

                    <TextView
                        android:id="@+id/textViewImages"
                        android:layout_width="wrap_content"
                        android:layout_height="35dp"
                        android:layout_alignParentLeft="true"
                        android:gravity="center"
                        android:text="Images (0)"
                        android:textSize="18sp"
                        android:textColor="@android:color/white"
                        android:background="@drawable/layout_left_round_colored"
                        android:layout_toLeftOf="@+id/viewDate"
                        />

                    <View
                        android:id="@+id/viewDate"
                        android:layout_width="0dp"
                        android:layout_height="60dp"
                        android:layout_alignParentTop="true"
                        android:layout_centerHorizontal="true"
                        />

                    <TextView
                        android:id="@+id/textViewVideos"
                        android:layout_width="wrap_content"
                        android:layout_height="35dp"
                        android:layout_alignEnd="@id/textViewImages"
                        android:gravity="center"
                        android:text="Videos (0)"
                        android:textColor="#ffec6221"
                        android:textSize="18sp"
                        android:layout_alignParentTop="true"
                        android:layout_alignParentRight="true"
                        android:layout_toRightOf="@+id/viewDate"/>
                </RelativeLayout>

                <LinearLayout
                    android:id="@+id/linLayoutImagesContainer"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical"
                    android:layout_marginLeft="10dp"
                    android:layout_marginRight="10dp">
                </LinearLayout>

            </LinearLayout>
        </LinearLayout>
    </ScrollView>
</LinearLayout>