ScrollView填充剪切掉的项目

时间:2019-05-24 12:25:31

标签: android

我尝试在包含LinearLayout的ScrollView上设置填充,但是我注意到第一个/最后一个项目被切除。 看起来好像ScrollView自己填充了背景,但没有将其通知给LinearLayout。

有人知道这种幸福吗? 谢谢。

我的代码:

<android.support.constraint.ConstraintLayout
    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="match_parent"
    android:layout_height="match_parent"
    android:padding="20dp"
    tools:context="com.example.aviad.scrollview.MainActivity">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="40dp"
        android:focusable="false"
        android:focusableInTouchMode="false"
        android:fillViewport="true"
        android:background="#54d45f"
        android:paddingTop="15dp"
        android:paddingBottom="15dp">

        <LinearLayout
            android:id="@+id/conteiner"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"/>

    </ScrollView>

</android.support.constraint.ConstraintLayout>

结果: enter image description here

1 个答案:

答案 0 :(得分:1)

只需将android:clipToPadding="false"添加到您的LinearLayout