Android控件之ScrollView用法实例分析
更新时间:2015年09月10日 10:12:37 作者:Ruthless
这篇文章主要介绍了Android控件之ScrollView用法,以完整实例形式较为详细的分析了ScrollView控件滚动显示的实现技巧,需要的朋友可以参考下
本文实例讲述了Android控件之ScrollView用法。分享给大家供大家参考。具体如下:
ScrollView滚动视图是指当拥有很多内容,屏幕显示不完时,需要通过滚动跳来显示的视图。
ScrollView只支持垂直滚动。
以下为案例
main.xml布局文件:
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scrollbars="vertical"> <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/p1" android:layout_gravity="center_horizontal"/> </LinearLayout> </ScrollView>
显示效果如下图所示:
希望本文所述对大家的Android程序设计有所帮助。
您可能感兴趣的文章:
- Android 自定义 HorizontalScrollView 打造多图片OOM 的横向滑动效果(实例代码)
- android 自定义ScrollView实现背景图片伸缩的实现代码及思路
- Android中实现监听ScrollView滑动事件
- android TextView不用ScrollViewe也可以滚动的方法
- 在android中ScrollView嵌套ScrollView解决方案
- android 实现ScrollView自动滚动的实例代码
- Android之ScrollView嵌套ListView和GridView冲突的解决方法
- android开发教程之文本框加滚动条scrollview
- Android ScrollView滑动实现仿QQ空间标题栏渐变
- Android自定义scrollView实现顶部图片下拉放大
相关文章
MPAndroidChart自定义图表Chart的Attribute及Render绘制逻辑
这篇文章主要为大家介绍了MPAndroidChart自定义图表Chart的Attribute及Render绘制逻辑,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-12-12Android App开发中使用RecyclerView替代ListView的实践
RecyclerView是Android L即5.0版本以来新加入的一个组件,主要用来实现item的瀑布式排列,因而被人们广泛认为用来替代ListView,这里我们就来看一下Android App开发中使用RecyclerView替代ListView的实践:2016-06-06Android中CountDownTimer倒计时器用法实例
这篇文章主要介绍了Android中CountDownTimer倒计时器用法,以实例形式分析了Android中CountDownTimer类的相关使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下2015-10-10
最新评论