Android-在scrollview中使用元素滚动时,scrollview上的圆角不显示

时间:2019-03-31 19:54:17

标签: android android-scrollview rounded-corners

我有一个带有圆角背景的滚动视图。当我在scrollview(线性布局/相对布局)中滚动元素时,角落将被(线性布局/实际布局)背景重叠。

rounded_background.yml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/black"/>

            <corners android:radius="5dp"/>
        </shape>
    </item>
</layer-list>

我需要将scrollview圆角设置为transapent,并将scrollview上的所有元素设置为“尊重”父角。

0 个答案:

没有答案