Android百分比布局:PercentRelativeLayout

简介: Android百分比布局:PercentRelativeLayout在最新的Android support包中,增加了开发者期待的百分比布局PercentRelativeLayout和PercentFrameLayout,不过,Android官方是以support包的支持形式出现。


Android百分比布局:PercentRelativeLayout

在最新的Android support包中,增加了开发者期待的百分比布局PercentRelativeLayout和PercentFrameLayout,不过,Android官方是以support包的支持形式出现。使用百分比布局前,需要先导入在support支持包目录下名为“percent”的库,如图所示:


将percent导入到Eclipse作为一个lib,然后就可以使用百分比布局PercentRelativeLayout和PercentFrameLayout。
本文以PercentRelativeLayout为例加以说明。
PercentRelativeLayout在RelativeLayout增加了一些针对百分比布局的必要属性如:
layout_widthPercent 、 layout_heightPercent
layout_marginPercent 
layout_marginLeftPercent
layout_marginTopPercent 
layout_marginRightPercent
layout_marginBottomPercent 
layout_marginStartPercent
layout_marginEndPercent

其中比较重要的是layout_widthPercent 和layout_heightPercent。顾名思义,该属性将控制子view在父布局中的宽高百分占比。
同样道理,又如layout_marginLeftPercent定义该子view距离父布局左边的百分占比。
写一个布局文件跑起来看看效果就一目了然:

<android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:id="@+id/text1"
        android:layout_height="50dip"
        android:layout_alignParentTop="true"
        app:layout_widthPercent="25%"
        android:background="#ff0000"
        android:text="1,25%" />

    <TextView
        android:id="@+id/text2"
        android:layout_height="50dip"
        android:layout_below="@+id/text1"
        android:layout_marginTop="1dip"
        app:layout_widthPercent="50%"
        android:background="#ff0000"
        android:text="2,50%" />

    <TextView
        android:id="@+id/text3"
        android:layout_height="50dip"
        android:layout_below="@+id/text2"
        android:layout_marginTop="1dip"
        app:layout_widthPercent="75%"
        android:background="#ff0000"
        android:text="3,75%" />

    <TextView
        android:id="@+id/text4"
        android:layout_height="50dip"
        android:layout_below="@+id/text3"
        android:layout_marginTop="1dip"
        app:layout_marginLeftPercent="25%"
        app:layout_widthPercent="50%"
        android:background="#ff0000"
        android:text="4,50%" />

    <TextView
        android:id="@+id/text5"
        android:layout_height="50dip"
        android:layout_below="@+id/text4"
        android:layout_marginTop="1dip"
        app:layout_marginLeftPercent="50%"
        app:layout_widthPercent="50%"
        android:background="#ff0000"
        android:text="5,50%" />

    <TextView
        android:id="@+id/text6"
        android:layout_height="50dip"
        android:layout_below="@+id/text5"
        android:layout_marginTop="1dip"
        app:layout_marginLeftPercent="25%"
        app:layout_widthPercent="25%"
        android:background="#ff0000"
        android:text="6,25%" />

</android.support.percent.PercentRelativeLayout>


XML代码运行结果如图:


相关文章
|
7月前
|
XML Android开发 数据安全/隐私保护
10. 【Android教程】网格布局 GridLayout
10. 【Android教程】网格布局 GridLayout
336 1
|
3月前
|
ARouter Android开发
Android不同module布局文件重名被覆盖
Android不同module布局文件重名被覆盖
|
5月前
|
移动开发 监控 前端开发
构建高效Android应用:从优化布局到提升性能
【7月更文挑战第60天】在移动开发领域,一个流畅且响应迅速的应用程序是用户留存的关键。针对Android平台,开发者面临的挑战包括多样化的设备兼容性和性能优化。本文将深入探讨如何通过改进布局设计、内存管理和多线程处理来构建高效的Android应用。我们将剖析布局优化的细节,并讨论最新的Android性能提升策略,以帮助开发者创建更快速、更流畅的用户体验。
77 10
|
7月前
|
Android开发
08. 【Android教程】相对布局 RelativeLayout
08. 【Android教程】相对布局 RelativeLayout
95 0
|
3月前
|
ARouter Android开发
Android不同module布局文件重名被覆盖
Android不同module布局文件重名被覆盖
186 0
|
5月前
|
编解码 Android开发
【Android Studio】使用UI工具绘制,ConstraintLayout 限制性布局,快速上手
本文介绍了Android Studio中使用ConstraintLayout布局的方法,通过创建布局文件、设置控件约束等步骤,快速上手UI设计,并提供了一个TV Launcher界面布局的绘制示例。
77 1
|
6月前
|
Android开发 Kotlin
kotlin开发安卓app,如何让布局自适应系统传统导航和全面屏导航
使用`navigationBarsPadding()`修饰符实现界面自适应,自动处理底部导航栏的内边距,再加上`.padding(bottom = 10.dp)`设定内容与屏幕底部的距离,以完成全面的布局适配。示例代码采用Kotlin。
144 15
|
5月前
|
XML 数据可视化 API
Android经典实战之约束布局ConstraintLayout的实用技巧和经验
ConstraintLayout是Android中一款强大的布局管理器,它通过视图间的约束轻松创建复杂灵活的界面。相较于传统布局,它提供更高灵活性与性能。基本用法涉及XML定义约束,如视图与父布局对齐。此外,它支持百分比尺寸、偏移量控制等高级功能,并配有ConstraintSet和编辑器辅助设计。合理运用可显著提高布局效率及性能。
283 0
|
5月前
|
Android开发
AutoX——当Android中clickable属性显示为false,实际可点击的布局如何处理
AutoX——当Android中clickable属性显示为false,实际可点击的布局如何处理
73 0
|
6月前
|
XML Android开发 数据安全/隐私保护
使用RelativeLayout布局Android界面
使用RelativeLayout布局Android界面