有的时候需要的控件太多或者图片太长溢出屏幕了,这时候就需要ScrollView
实现滑动效果
官方提示:不要在ScrollView
中添加RecyclerView
或者是ListView
布局,这样会引起不好的体验,可能会有滑动冲突的问题,ScrollView
的子布局只能有一个,其他的button
都是LinearLayout
的子元素,同时ScrollView
只支持水平或者竖直滑动
为了实现简单的滚动效果,我们直接在代码最后加上一个button让它超出屏幕外,运行程序,我们就可以看到模拟器的右边出现了滚动条,只要我们往下滑动就可以看到最后一个控件
竖直滑动实现代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/btn_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView"
android:textAllCaps="false"/>
<Button
android:id="@+id/btn_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="button"
android:textAllCaps="false"/>
<Button
android:id="@+id/btn_edittext"
android:layout_width=&#