iis服务器助手广告广告
返回顶部
首页 > 资讯 > 精选 >Android垂直滚动控件ScrollView使用方法详解
  • 369
分享到

Android垂直滚动控件ScrollView使用方法详解

android垂直滚动scrollview 2023-05-30 22:05:18 369人浏览 安东尼
摘要

一、简介二、方法1)ScrollView垂直滚动控件使用方法在layout布局文件的最外层建立一个ScrollView控件在ScrollView控件中加入一个LinearLayout控件,并且把它的orientation设置为vertica

一、简介

Android垂直滚动控件ScrollView使用方法详解

二、方法

1)ScrollView垂直滚动控件使用方法

在layout布局文件的最外层建立一个ScrollView控件

在ScrollView控件中加入一个LinearLayout控件,并且把它的orientation设置为vertical

在LinearLayout控件中放入多个装有图片的ImageView控件

三、代码实例

效果图

Android垂直滚动控件ScrollView使用方法详解

Android垂直滚动控件ScrollView使用方法详解

代码

/Ex27ScrollView/src/fry/Activity01.java

<?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:scrollbars="none" > <LinearLayout   android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical"  >  <ImageView    android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:src="@drawable/item1"   />  <ImageView    android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:src="@drawable/item2"   />  <ImageView    android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:src="@drawable/item3"   />  <ImageView    android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:src="@drawable/item4"   />  <ImageView    android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:src="@drawable/item5"   /> </LinearLayout> </ScrollView>

--结束END--

本文标题: Android垂直滚动控件ScrollView使用方法详解

本文链接: https://www.lsjlt.com/news/221701.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作