我的滚动视图根本不起作用



我无法使ScrollView正确滚动。它总是切断底部的内容,就好像它是普通的LinearLayout一样。

我的代码:

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context="com.android.dadiperpus.MainActivity">

我把LinearLayout放在里面ScrollView

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/logo_stan"
    android:orientation="vertical"
    android:weightSum="10">

然后我把 RelativeLayout 放在 LinearLayout 中

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_horizontal|center_vertical"
            android:text="CONTOH BRO"
            android:textSize="32sp" />
    </RelativeLayout>

在这里我使用Gridlayout

    <GridLayout
        android:id="@+id/mainGrid"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="8"
        android:alignmentMode="alignMargins"
        android:columnCount="2"
        android:columnOrderPreserved="false"
        android:padding="14dp"
        android:rowCount="3">

然后我把几个这样的代码放在GridLayout

        <android.support.v7.widget.CardView
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_columnWeight="1"
            android:layout_marginBottom="16dp"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:layout_rowWeight="1"
            app:cardCornerRadius="8dp"
            app:cardElevation="8dp">
            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal|center_vertical"
                android:layout_margin="16dp"
                android:orientation="vertical">
                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:src="@drawable/logo_stan" />
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Pengantar Kepabeanan"
                    android:textAlignment="center"
                    android:textColor="@android:color/black"
                    android:textSize="18sp"
                    android:textStyle="bold" />
            </LinearLayout>
        </android.support.v7.widget.CardView>

我已经尝试将ScrollView包裹在LinearLayout里面,但它根本没有改变任何东西。

我把LinearLayout放在ScrollView中

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/logo_stan"
    android:orientation="vertical"
    android:weightSum="10">

此线性布局需要使用wrap_content作为其高度。通过使用 match_parent ,您是说您希望线性布局仅与托管它的滚动视图一样高......这意味着它将切断所有"可滚动"内容。通过使用wrap_content(或一些大于滚动视图的固定高度(,线性布局中的内容将多于一个屏幕上可见的内容,然后滚动将按预期工作。

从线性布局中删除权重总和时,layout_weight从相对布局和网格布局中删除权重总和时,您的滚动视图将滚动(仅在内容大于屏幕尺寸的情况下(。为所有这些布局(相对布局和网格布局(指定高度wrap_content而不是 0dp。实际上,代码中发生的事情是:您已经给出了线性布局的高度match_parent(等于屏幕尺寸(和权重总和 10。然后你给出相对布局layout_weight = 2,网格布局的layout_weight = 8,这意味着相对布局占据屏幕的 2 部分,网格布局占据屏幕的 8 部分。在这种情况下,您的内容永远不会超过碎石大小和网格布局试图适应屏幕,因此,您的内容在底部被切断。

希望,它会帮助你。

谢谢

相关内容

  • 没有找到相关文章

最新更新