如何在 Android 中使我的布局垂直滚动?
在进入示例之前,我们应该了解什么是垂直滚动视图(滚动视图)。垂直滚动视图由 **android.widget.ScrollView** 类提供。它用于在垂直方向上滚动子视图。
此示例演示如何使用垂直滚动视图。
**步骤 1** - 在 Android Studio 中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必需的详细信息以创建新项目。
**步骤 2** - 将以下代码添加到 res/layout/activity_main.xml 中。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:id="@+id/layout" android:layout_height="match_parent"> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:orientation="vertical" android:layout_height="match_parent"> <ImageView android:layout_width="match_parent" android:background="#c1c1c1" android:layout_height="300dp" android:src="@drawable/a"/> <ImageView android:layout_width="match_parent" android:background="#c1c1c1" android:layout_height="300dp" android:layout_marginTop="30dp" android:src="@drawable/b"/> <ImageView android:layout_width="match_parent" android:background="#c1c1c1" android:layout_height="300dp" android:layout_marginTop="30dp" android:src="@drawable/c"/> <ImageView android:layout_width="match_parent" android:background="#c1c1c1" android:layout_height="300dp" android:layout_marginTop="30dp" android:src="@drawable/d"/> <ImageView android:layout_width="match_parent" android:background="#c1c1c1" android:layout_height="300dp" android:layout_marginTop="30dp" android:src="@drawable/e"/> </LinearLayout> </ScrollView> </LinearLayout>
在以上代码中,我们已将线性布局声明为父级并添加了垂直滚动视图。垂直滚动视图将垂直滚动其子视图,因此我们创建了线性布局作为垂直滚动视图的子级,并为线性布局添加了子级。我们提供了五个子图像视图进行滚动。
**步骤 3** - 无需更改 manifest.xml 和活动。
让我们尝试运行您的应用程序。我假设您已将您的实际 Android 移动设备连接到您的计算机。要从 Android Studio 运行应用程序,请打开项目的一个活动文件,然后点击工具栏中的运行图标 。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 -
以上结果是您垂直滚动时的初始屏幕,它将像下面图像所示那样滚动 -
在以上结果中,我们正在垂直滚动 ImageView。
最终它将到达垂直滚动视图的最后一个位置,如上所示。
点击 此处 下载项目代码
广告