微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Android:Horizo​​ ntalScrollView隐藏背景边框onScroll

如何解决Android:Horizo​​ ntalScrollView隐藏背景边框onScroll

我是 android 新手,我在 baseView 之上有一个 Horizo​​ntalScrollView

<?xml version="1.0" encoding="utf-8"?>
<BaseView 
    android:id="@+id/comp_id"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:descendantFocusability="blocksDescendants">

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

        <include layout="@layout/header"/>

        <HorizontalScrollListenerScrollView
            android:id="@+id/horizontal_scroller"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:clipToPadding="false"
            android:paddingStart="@dimen/shoveler_padding"
            android:scrollbars="none"
            android:clickable="false"
            android:focusable="false">

            <LinearLayout
                android:id="@+id/shoveler"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="horizontal"/>

         </HorizontalScrollListenerScrollView>

    </LinearLayout>
</BaseView>

baseView 有一个背景可绘制对象,形成水平滚动的背景边框

问题在于滚动滚动条隐藏了背景基本视图的边框。

enter image description here

我不确定如何在滚动时保持背景边框。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。