使用 Scrollview 滚动的背景
Posted
技术标签:
【中文标题】使用 Scrollview 滚动的背景【英文标题】:background to scroll with Scrollview 【发布时间】:2020-09-06 19:16:40 【问题描述】:如何使背景沿视图或布局滚动?
这是我的布局
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:background="@drawable/body_information">
<LinearLayout
android:layout_
android:layout_
android:orientation="vertical"
android:paddingStart="60dp"
android:paddingEnd="60dp">
</LinearLayout>
【问题讨论】:
【参考方案1】:通过使用 scrollView,您会导致子项(在本例中为 LinearLayout)在屏幕上移动,而不是由 ScrollView 本身移动。因此,要使图像随着 LinearLayout 移动,请在其上放置 background 属性。
<LinearLayout
android:layout_
android:layout_
android:orientation="vertical"
android:background="@drawable/body_information"
android:paddingStart="60dp"
android:paddingEnd="60dp">
</LinearLayout>
【讨论】:
以上是关于使用 Scrollview 滚动的背景的主要内容,如果未能解决你的问题,请参考以下文章
UIColectionView Vertical Scrolling inside a Scrollview - 在集合视图区域中滚动时禁用滚动视图的滚动