共计 5869 个字符,预计需要花费 15 分钟才能阅读完成。
前言
通过两天的”实战“,今天我们稍微放松一下脚步,让大家喘口气歇一会儿,我们今天为大家带来的控件,解决了太多在项目中遇到的适配问题,如果你已经碰到了这种问题,就紧跟我们的脚步吧~
在前面几篇文章中,向大家介绍了一些常用的布局及 UI 控件。在使用的过程中,可能会遇到这样的场景,当绘制的 UI 控件超出手机屏幕尺寸的时候,就会导致此 UI 控件无法显示。为了解决这一问题,Android
提供了滚动视图 ScrollView
,下面就详细介绍下ScrollView
的具体使用。
简介
ScrollView
称为滚动视图,当在一个屏幕的像素显示不下绘制的 UI 控件时,可以采用滑动的方式,使控件显示。
先看下 ScrollView
类的继承关系:
java.lang.Object
↳android.view.View
↳android.view.ViewGroup
↳android.widget.FrameLayout
↳android.widget.ScrollView
可以看出,ScrollView
原来是一个 FrameLayout
的容器,不过在他的基础上添加了滚动,允许显示的比实际多的内容。
使用方式
1. 竖直滚动视图ScrollView
在页面的竖直方向线性布局 5 个Button
,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="20dp"
android:gravity="center"
android:text="内容一"
android:textColor="#03A9F4"
android:textSize="24sp" />
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="80dp"
android:gravity="center"
android:text="内容二"
android:textColor="#03A9F4"
android:textSize="24sp" />
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="80dp"
android:gravity="center"
android:text="内容三"
android:textColor="#03A9F4"
android:textSize="24sp" />
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="80dp"
android:gravity="center"
android:text="内容四"
android:textColor="#03A9F4"
android:textSize="24sp" />
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="80dp"
android:layout_marginBottom="80dp"
android:gravity="center"
android:text="内容五"
android:textColor="#03A9F4"
android:textSize="24sp" />
</LinearLayout>
</ScrollView>
通过 Android Studio
的Preview
视图也可以看出,5 个 Button
已超出屏幕显示,在不使用 ScrollView
的情况下,父布局直接使用LinearLayout
,是无法使屏幕滑动显示所有控件的。
使用 ScrollView
后显示如下:
注意 :ScrollView
的子元素只能有一个,可以是一个 View
(如ImageView
、TextView
等)也可以是一个 ViewGroup
(如LinearLayout
、RelativeLayout
等),其子元素内部则不再限制,否则会报以下异常。
Caused by: java.lang.IllegalStateException: ScrollView can host only one direct child
2. 水平滚动视图HorizontalScrollView
在实际使用时,我们也会遇到水平方向,控件超出屏幕的情况。这时就需要使用水平方向的滚动视图HorizontalScrollView
。
在上面代码头部新增一个HorizontalScrollView
,水平方向线性布局 4 个ImageView
,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginTop="20dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_margin="20dp"
android:src="@mipmap/ic_launcher" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_margin="20dp"
android:src="@mipmap/ic_launcher" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_margin="20dp"
android:src="@mipmap/ic_launcher" />
<ImageView
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_margin="20dp"
android:src="@mipmap/ic_launcher" />
</LinearLayout>
</HorizontalScrollView>
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="20dp"
android:gravity="center"
android:text="内容一"
android:textColor="#03A9F4"
android:textSize="24sp" />
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="80dp"
android:gravity="center"
android:text="内容二"
android:textColor="#03A9F4"
android:textSize="24sp" />
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="80dp"
android:gravity="center"
android:text="内容三"
android:textColor="#03A9F4"
android:textSize="24sp" />
<Button
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="80dp"
android:layout_marginBottom="80dp"
android:gravity="center"
android:text="内容四"
android:textColor="#03A9F4"
android:textSize="24sp" />
</LinearLayout>
</ScrollView>
展示效果如下:
可以看出,HorizontalScrollView
中的图片内容,可以横向滑动,并且整个布局由于外部嵌套了ScrollView
,整体页可以竖直方向滑动。
注意 :同ScrollView
,HorizontalScrollView
中的子元素也只能有一个,否则报错。
XML 中常用属性介绍
1.android:fadingEdge="none"
设置拉滚动条时,边框渐变的方向。none(边框颜色不变),horizontal(水平方向颜色变淡),vertical(垂直方向颜色变淡)。
2.android:overScrollMode="never"
删除 ScrollView
拉到尽头(顶部、底部),然后继续拉出现的阴影效果,适用于 2.3 及以上的 否则不用设置。
3.android:scrollbars="none"
设置滚动条显示,none(隐藏),horizontal(水平),vertical(垂直)。
4.android:descendantFocusability=""
该属性是当一个为 view 获取焦点时,定义 ViewGroup
和其子控件两者之间的关系。
属性的值有三种:
beforeDescendants //viewgroup 会优先其子类控件而获取到焦点
afterDescendants //viewgroup 只有当其子类控件不需要获取焦点时才获取焦点
blocksDescendants //viewgroup 会覆盖子类控件而直接获得焦点
5.android:fillViewport=“true"
这是 ScrollView
独有的属性,用来定义 ScrollView
对象是否需要拉伸自身内容来填充 viewport
。通俗来说,就是允许ScrollView
去填充整个屏幕。比如 ScrollView
嵌套的子控件高度达不到屏幕高度时,虽然 ScrollView
高度设置了 match_parent
,也无法充满整个屏幕,需设置android:fillViewport=“true"
使ScrollView
填充整个页面,给 ScrollView
设置背景颜色就能体现。
常用方法:
滑动开关控制
scrollView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
// true 禁止滑动 false 可滑动
return true;
}
});
滑动位置控制
scrollView.post(new Runnable() {
@Override
public void run() {
// 滑动到顶部
scrollView.fullScroll(ScrollView.FOCUS_UP);
// 滑动到底部
scrollView.fullScroll(ScrollView.FOCUS_DOWN);
}
});
滑动到某个位置
scrollView.post(new Runnable() {
@Override
public void run() {
// 偏移值
int offset = 100;
scrollView.smoothScrollTo(0, offset);
}
});
结语
可以看出,ScrollView
是在日常开发中经常使用的 View
控件,其使用方式也比较简单。上面只是介绍了一些基本的使用操作,在接下来的文章中还会结合实际项目技能点进行深入分析,快点儿来关注我们吧!
(WXGZH:下码看花)