iis服务器助手广告广告
返回顶部
首页 > 资讯 > 精选 >HorizontalScrollView水平滚动控件使用方法详解
  • 523
分享到

HorizontalScrollView水平滚动控件使用方法详解

horizontalscrollview水平滚动控件 2023-05-30 22:05:04 523人浏览 独家记忆
摘要

一、简介用法ScrollView大致相同二、方法1)HorizontalScrollView水平滚动控件使用方法在layout布局文件的最外层建立一个HorizontalScrollView控件在HorizontalScrollView控件

一、简介

用法ScrollView大致相同

HorizontalScrollView水平滚动控件使用方法详解

二、方法

1)HorizontalScrollView水平滚动控件使用方法

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

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

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

2)HorizontalScrollView和ScrollView混合使用方法

 以先垂直后水平为例

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

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

在这个LinearLayout中添加多个已经弄好的HorizontalScrollView水平滚动控件 

三、代码实例

HorizontalScrollView水平滚动控件使用方法

水平滚动效果图:

HorizontalScrollView水平滚动控件使用方法详解

HorizontalScrollView水平滚动控件使用方法详解

水平滚动代码:

/Ex27ScrollView/res/layout/activity02.xml

<?xml version="1.0" encoding="utf-8"?><HorizontalScrollView 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="horizontal"    >    <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>  </HorizontalScrollView>

--结束END--

本文标题: HorizontalScrollView水平滚动控件使用方法详解

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

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

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

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

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

  • 微信公众号

  • 商务合作