(1)垂直方向滚动时 layout_width 要设置为 match_parent,layout_height 要设置为wrap_content
(2)水平方向滚动时 layout_width 要设置为wrap_content,layout_height 要设置为match_parent
(3)滚动视图节点下面必须只能挂着一个子布局子节点,否则运行时会报错java.lang.IllegalStateException: ScrollView can host only one direct child
1.改变这个布局文件的根布局:把根布局改成:ScrollView
注意:ScrollView的子元素只能有一个,所以得增加一个LinearLayout布局,把其他按键放在这个LinearLayout中,那么ScrollViewd的子元素就只有一个LinearLayout了,而LinearLayout的子元素不限制。
<?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"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<Button
android:id="@+id/IVButton_Id"
android:layout_width="match_parent"
android:layout_height="wrap_content"
an