ScrollView 和 RelativeLayout两个布局技巧

举报
codexiaosheng 发表于 2022/02/28 10:20:50 2022/02/28
【摘要】 Android 布局技巧,ScrollView 和 RealativeLayout不被大多数人发现的技巧

Android 布局容器、常用控件和属性,相信每个开发者都能倒背如流,开发排版 layout 时也能适当取舍。但是,本文中介绍的这两个常见的设计场景,其特殊的实现技巧可能你真的不曾用过。

RelativeLayout 子元素水平居中等分

设计场景:

image.png

看到这样的效果,可能你会不假思索地选择 LinearLayout ,同时分配 children 的 weight 属性。不错,这样实现确实很简单。但是,通常界面上还有其他元素,父容器一般使用的是 RelativeLayout ,如果再选择使用一层LinearLayout 包裹这两个 Button 的话,无疑会额外增加视图层次,加大性能渲染压力。其实,RelativeLayout 也能让两个 children 水平居中等分宽度。

实现方式如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="match_parent"
	android:layout_height="match_parent">
    <View
        android:id="@+id/strut"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_centerHorizontal="true"/>

    <Button
        android:id="@+id/btn_login"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignRight="@+id/strut"
        android:layout_alignParentLeft="true"
        android:text="登录"/>

    <ImageView
        android:id="@+id/btn_register"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignLeft="@+id/strut"
        android:layout_alignParentRight="true"
        android:text="注册"/>
</RelativeLayout>

ScrollView 内容适配技巧

设计场景:

image.png

简单说明一下,这种界面,或者说类似的界面很常见,中间内容长度不固定,导致底部操作按钮位置也不尽相同。比如,这个界面的产品重点是希望用户能够读完协议内容,然后再出现操作按钮。

产品希望的效果是:当一屏能够显示完内容时,操作按钮直接显示在屏幕最底部;当屏幕空间不足(或者说内容较多,超出屏幕)时,屏幕以内容显示为主,操作按钮位于屏幕之外,内容之后,当滑动到最底部时,出现操作按钮。

理解需求之后,我们再来看一下实现方式:

<?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:fillViewport="true">

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView 
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="8dp"
            android:text="用户协议"
            android:textAppearance="?android:attr/textAppearanceMedium"/>

        <View 
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:layout_marginTop="8dp"
            android:background="@color/colorPrimary"/>

        <TextView 
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="16dp"
            android:text="@string/content"/>

       	<RelativeLayout
        	android:layout_width="match_parent"
        	android:layout_height="wrap_content"
            android:background="@android:drawable/bottom_bar"
			android:gravity="center_vertical">
            <View
                android:id="@+id/strut"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_centerHorizontal="true"/>

            <Button
                android:id="@+id/btn_login"
                android:layout_width="match_parent"
                android:layout_height="48dp"
                android:layout_alignRight="@+id/strut"
                android:layout_alignParentLeft="true"
                android:text="登录"/>

            <ImageView
                android:id="@+id/btn_register"
                android:layout_width="match_parent"
                android:layout_height="48dp"
                android:layout_alignLeft="@+id/strut"
                android:layout_alignParentRight="true"
                android:text="注册"/>
    	</RelativeLayout>
    </LinearLayout>
</ScrollView>

注意两个地方,第一个是设置 ScrollView 的 android:fillViewport="true" 属性,保证内容占据整个屏幕空间;第二个地方是,中间部分,也就是例子中的TextView 巧妙运用 android:layout_weight 属性,实现高度上的自适应,保证后面的操作按钮部分能够按照我们期望的要求正确展示。

这些小技巧需要我们好好领会,实际开发过程中能够运用上述两个布局技巧的地方会有很多。当然,读完此文,如果你还用过其他比较特别的技巧的话,不妨留言交流一下。

我是一名安卓开发工程师,最近正在学习Java后端知识,每天保持学习,掌握一项技能其实用不了多长时间,加油!

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。