我可能真的很厚,但有可能有一个滚动视图,上面和下面有一个100像素的边距,以便内容只在该区域滚动,而不是在顶部和底部边缘滚动?
当我滚动内容时我试着滚动到顶部和底部边距
像滚动文本框这样的东西?
任何想法
标记
答案 0 :(得分:3)
您可以使用填充 100px 顶部和底部的padding
代替margin
<强>样品:强>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:paddingBottom="100dp"
android:paddingTop="100dp" >