在Android中, ScrollView允许滚动位于父视图组中的多个视图。可以通过两种方式在android应用程序中垂直或水平滚动。
在本文中,我们将讨论如何在Kotlin中创建Horizontal ScrollView。
XML Attributes | Description |
---|---|
android:fillViewport | It defines whether the horizontal scrollview should stretch its content to fill the viewport. |
android:layout_height | Sets the height of the horizontal scroll view |
android:layout_width | Sets the width of the horizontal scroll view |
android:src | Sets background of the image |
android:id | Sets unique id of the view |
让我们首先在Android Studio中创建一个项目。为此,请按照以下说明进行操作:
第一步是在Android Studio中创建一个新项目。为此,请按照下列步骤操作:
- 单击文件,然后依次单击新建和新建项目,并根据需要命名
- 然后,选择Kotlin语言支持,然后单击下一步按钮。
- 选择最低的SDK,无论您需要什么
- 选择清空活动,然后单击完成。
修改activity_main.xml文件
新增图片
我们需要添加一些可用于滚动目的的图像。因此,我们必须将图像从本地计算机路径复制到app / res / mipmap文件夹。
注意:我们将图像添加到了mipmap文件夹而不是可绘制文件夹中,因为图像的尺寸非常大。
在MainActivity.kt文件中创建HorizontalScrollView
打开app / src / main / Java/yourPackageName/MainActivity.kt并进行以下更改:
package com.geeksforgeeks.myfirstKotlinapp
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
}
AndroidManifest.xml文件
作为仿真器运行:
想要一个节奏更快,更具竞争性的环境来学习Android的基础知识吗?
单击此处前往由我们的专家精心策划的指南,以使您立即做好行业准备!