1. android-percent-support-lib-sample介绍:

谷歌最新的百分比布局库的示例项目。其实LinearLayout的layout_weight也能实现百分比效果,不过这个更直接。

android-percent-support-lib-sample项目地址:

https://github.com/JulienGenoud/android-percent-support-lib-sample

简单效果:

 

 

复杂效果:

 

2. 百分比库使用Demo:

这里的Eclipse版本库代码(包含示例代码),我已经完整提交到Github。地址如下:

https://github.com/PocketBoy/Local/tree/master/Eclipse_android_percent_support

(1)点击上面的链接,下载库代码,解压,导入Eclipse之中:

(2)这里我们新建一个Android工程,命名位"PercentDemo",如下:

上面库文件需要引用android-support-v4.jar

(3)来到上面自定义属性文件attrs.xml,如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <declare-styleable name="PercentLayout_Layout">
  4. <attr name="layout_widthPercent" format="string"/>
  5. <attr name="layout_heightPercent" format="string"/>
  6. <attr name="layout_marginPercent" format="string"/>
  7. <attr name="layout_marginLeftPercent" format="string"/>
  8. <attr name="layout_marginTopPercent" format="string"/>
  9. <attr name="layout_marginRightPercent" format="string"/>
  10. <attr name="layout_marginBottomPercent" format="string"/>
  11. <attr name="layout_marginStartPercent" format="string"/>
  12. <attr name="layout_marginEndPercent" format="string"/>
  13. <attr name="layout_textSizePercent" format="string"/>
  14. <attr name="layout_maxWidthPercent" format="string"/>
  15. <attr name="layout_maxHeightPercent" format="string"/>
  16. <attr name="layout_minWidthPercent" format="string"/>
  17. <attr name="layout_minHeightPercent" format="string"/>
  18. </declare-styleable>
  19. </resources>

 至于怎么使用自定义属性,请参照笔记:

自定义控件(视图)28期笔记06:自定义控件之 自定义属性

(4)来到activity_main.xml布局文件之中:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.percent.PercentLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical" >
  7. <android.support.percent.PercentLinearLayout
  8. xmlns:android="http://schemas.android.com/apk/res/android"
  9. xmlns:app="http://schemas.android.com/apk/res-auto"
  10. android:layout_width="match_parent"
  11. android:layout_height="0dp"
  12. app:layout_heightPercent="33.3%"
  13. android:orientation="horizontal" >
  14. <View
  15. android:id="@+id/view_11"
  16. android:layout_width="0dp"
  17. android:layout_height="match_parent"
  18. app:layout_widthPercent="50%"
  19. android:background="#ff44aacc" />
  20. <View
  21. android:id="@+id/view_12"
  22. android:layout_width="0dp"
  23. android:layout_height="match_parent"
  24. app:layout_widthPercent="50%"
  25. android:background="#664466cc" />
  26. </android.support.percent.PercentLinearLayout>
  27. <android.support.percent.PercentLinearLayout
  28. xmlns:android="http://schemas.android.com/apk/res/android"
  29. xmlns:app="http://schemas.android.com/apk/res-auto"
  30. android:layout_width="match_parent"
  31. android:layout_height="0dp"
  32. app:layout_heightPercent="33.3%"
  33. android:orientation="horizontal" >
  34. <View
  35. android:id="@+id/view_21"
  36. android:layout_width="0dp"
  37. android:layout_height="match_parent"
  38. app:layout_widthPercent="25%"
  39. android:background="#ff44ffcc" />
  40. <View
  41. android:id="@+id/view_22"
  42. android:layout_width="0dp"
  43. android:layout_height="match_parent"
  44. app:layout_widthPercent="25%"
  45. android:background="#8585855c" />
  46. <View
  47. android:id="@+id/view_23"
  48. android:layout_width="0dp"
  49. android:layout_height="match_parent"
  50. app:layout_widthPercent="25%"
  51. android:background="#ff444545" />
  52. <View
  53. android:id="@+id/view_24"
  54. android:layout_width="0dp"
  55. android:layout_height="match_parent"
  56. app:layout_widthPercent="25%"
  57. android:background="#556ff776" />
  58. </android.support.percent.PercentLinearLayout>
  59. <android.support.percent.PercentLinearLayout
  60. xmlns:android="http://schemas.android.com/apk/res/android"
  61. xmlns:app="http://schemas.android.com/apk/res-auto"
  62. android:layout_width="match_parent"
  63. android:layout_height="0dp"
  64. app:layout_heightPercent="33.3%"
  65. android:orientation="horizontal" >
  66. <View
  67. android:id="@+id/view_31"
  68. android:layout_width="0dp"
  69. android:layout_height="match_parent"
  70. app:layout_widthPercent="50%"
  71. android:background="#ffffff00" />
  72. <View
  73. android:id="@+id/view_32"
  74. android:layout_width="0dp"
  75. android:layout_height="match_parent"
  76. app:layout_widthPercent="50%"
  77. android:background="#ffff00ff" />
  78. </android.support.percent.PercentLinearLayout>
  79. </android.support.percent.PercentLinearLayout>

布局效果如下:

(5)来到activity_main1.xml,如下:

  1. <android.support.percent.PercentRelativeLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@android:color/white" >
  7. <View
  8. android:id="@+id/top_left"
  9. android:layout_width="0dp"
  10. android:layout_height="0dp"
  11. android:layout_alignParentTop="true"
  12. app:layout_heightPercent="20%"
  13. app:layout_widthPercent="70%"
  14. android:background="#ff44aacc" />
  15. <View
  16. android:id="@+id/top_right"
  17. android:layout_width="0dp"
  18. android:layout_height="0dp"
  19. android:layout_alignParentTop="true"
  20. android:layout_toRightOf="@+id/top_left"
  21. app:layout_heightPercent="20%"
  22. app:layout_widthPercent="30%"
  23. android:background="#ffe40000" />
  24. <android.support.percent.PercentFrameLayout
  25. android:id="@+id/bottom"
  26. android:layout_width="match_parent"
  27. android:layout_height="0dp"
  28. android:layout_below="@+id/top_left"
  29. android:layout_gravity="center"
  30. app:layout_heightPercent="80%"
  31. android:background="#ff00ff22" >
  32. <android.support.percent.PercentLinearLayout
  33. android:layout_width="fill_parent"
  34. android:layout_height="0dp"
  35. app:layout_heightPercent="100%"
  36. app:layout_marginTopPercent="10%"
  37. android:background="@android:color/white"
  38. android:orientation="vertical"
  39. >
  40. <View
  41. android:layout_width="0dp"
  42. android:layout_height="0dp"
  43. app:layout_heightPercent="30%"
  44. app:layout_widthPercent="10%"
  45. android:background="#ff44ccdd" />
  46. <View
  47. android:layout_width="0dp"
  48. android:layout_height="0dp"
  49. app:layout_heightPercent="30%"
  50. app:layout_widthPercent="90%"
  51. android:background="#ffe400dd" />
  52. <TextView
  53. android:layout_width="0dp"
  54. android:layout_height="0dp"
  55. app:layout_heightPercent="20%"
  56. app:layout_widthPercent="90%"
  57. android:background="#ccc"
  58. android:text="margin 15% of w"
  59. app:layout_marginPercent="5%h"
  60. />
  61. </android.support.percent.PercentLinearLayout>
  62. </android.support.percent.PercentFrameLayout>
  63. </android.support.percent.PercentRelativeLayout>

布局效果如下:

(6)activity_main2.xml,如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.percent.PercentFrameLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical">
  8. <android.support.percent.PercentFrameLayout
  9. android:layout_width="0dp"
  10. android:layout_height="0dp"
  11. android:layout_gravity="center"
  12. android:background="#ff44aacc"
  13. app:layout_heightPercent="50%w"
  14. app:layout_widthPercent="50%w">
  15. <android.support.percent.PercentFrameLayout
  16. android:layout_width="0dp"
  17. android:layout_height="0dp"
  18. android:layout_gravity="center"
  19. android:background="#ffcc5ec7"
  20. app:layout_heightPercent="50%w"
  21. app:layout_widthPercent="50%w">
  22. <TextView
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:layout_gravity="center"
  26. android:background="#ff7ecc16"
  27. android:gravity="center"
  28. android:text="margin 15% of w"
  29. app:layout_marginPercent="15%w"
  30. />
  31. </android.support.percent.PercentFrameLayout>
  32. </android.support.percent.PercentFrameLayout>
  33. <TextView android:layout_width="0dp"
  34. android:layout_height="0dp"
  35. android:layout_gravity="bottom|right"
  36. android:background="#44ff0000"
  37. android:gravity="center"
  38. android:text="15%w,15%w"
  39. app:layout_heightPercent="15%w"
  40. app:layout_marginPercent="5%w"
  41. app:layout_widthPercent="15%w"/>
  42. </android.support.percent.PercentFrameLayout>

布局效果如下:

7. Android框架和工具之 android-percent-support-lib-sample(百分比支持)的更多相关文章

  1. 13. Android框架和工具之 Android Drawable Factory

    1. AndroidDrawableFactory 一个生成Android应用所需尺寸图片的工具. 托管在Github之中: https://github.com/tizionario/Android ...

  2. 3. Android框架和工具之 xUtils(DbUtils )

    1. xUtils简介 xUtils 包含了很多实用的android工具.xUtils 最初源于Afinal框架,进行了大量重构,使得xUtils支持大文件上传,更全面的http请求协议支持(10种谓 ...

  3. 3. Android框架和工具之 xUtils(BitmapUtils)

    1. BitmapUtils 作用: 加载bitmap的时候无需考虑bitmap加载过程中出现的oom和android容器快速滑动时候出现的图片错位等现象: 支持加载网络图片和本地图片: 内存管理使用 ...

  4. 3. Android框架和工具之 xUtils(HttpUtils)

    1. HttpUtils 作用: 支持同步,异步方式的请求: 支持大文件上传,上传大文件不会oom: 支持GET,POST,PUT,MOVE,COPY,DELETE,HEAD请求: 下载支持301/3 ...

  5. 10. Android框架和工具之 AppMsg(消息提示)

    1. AppMsg 优雅的弹出类似Toast的消息提示,支持3种状态Alert(警告),Confirm(确认)以及Info(消息).        2. AppMsg使用: (1)AppMsg下载地址 ...

  6. 5. Android框架和工具之 ZXing(二维码)

    Android进阶笔记06:Android 实现扫描二维码实现网页登录

  7. 3. Android框架和工具之 xUtils(ViewUtils )

    1. ViewUtils 作用: 完全注解方式就可以进行UI绑定和事件绑定. 无需findViewById和setClickListener等. 2. UI绑定 和 事件绑定 (1)UI绑定 下面我們 ...

  8. Android框架式编程之Android Architecture Components

    1. 当前Android开发面临的问题 Android开发不同于传统的桌面程序开发,桌面程序一般都有唯一的快捷方式入口,并且常作为单进程存在:而一个典型的Android应用通常由多个应用组件构成,包括 ...

  9. 6. Android框架和工具之 JSON解析

    Android进阶笔记17:3种JSON解析工具(org.json.fastjson.gson)

随机推荐

  1. [iOS微博项目 - 2.4] - 重新安排app启动步骤

    github: https://github.com/hellovoidworld/HVWWeibo   A.app启动步骤 1.加入了授权步骤之后,最先要判断app内是否已经登陆了账号 2.在程序启 ...

  2. Keil MDK Code、RO-data、RW-data、ZI-data数据段

      Program Size: Code=10848 RO-data=780 RW-data=372 ZI-data=868   Code 表示程序代码指令部分 存放在Flash区 RO-data 表 ...

  3. FZU 8月有奖月赛A Daxia & Wzc's problem (Lucas)

    Problem A Daxia & Wzc's problem Accept: 42    Submit: 228Time Limit: 1000 mSec    Memory Limit : ...

  4. 判断时间大小 yyyy-MM-dd 格式

    // yyyy-MM-dd function bigThanToday(someDate){ var date = new Date(); var dateStr = date.getFullYear ...

  5. Arrays, Hashtables and Dictionaries

    Original article Built-in arrays Javascript Arrays(Javascript only) ArrayLists Hashtables Generic Li ...

  6. [读书笔记]ASP.NET的URL路由引擎

    作用 一般的URL: 举例:http://www.myapp.com/app.aspx?id=2&sessionid=29320xafafa02fa0zga0g8a0z 缺点: 不美观,不清晰 ...

  7. vs2008 release下调试状态设置[转]

    这是一个老生常谈的话题,但还是有时候会漏洞一些设置.总结一些,总共需要三个地方设置, 分别是1)c\c++-> General->Debug Information Format. 2) ...

  8. js获取当前页面的url信息方法

    例如网址:http://localhost:12085/My/OrderM.aspx 设置或获取对象指定的文件名或路径. alert(window.location.pathname) 输出结果:/M ...

  9. MON166 User's Guide

    MON166 is a debug monitor for C16x and ST10 user programs. It consists of: A configurable monitor pr ...

  10. 使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

    android studio(以下简称AS)是google推荐的android专用IDE,替代目前主流的eclipse,另外arcgis也把AS作为推荐的android IDE 本文不介绍androi ...