android 百分比布局

2021-07-14 02:13:40 字數 600 閱讀 8088

為了更好的與碎片化戰鬥,android團隊終於推出百分比支援庫

這個庫是非常容易使用的,因為它就如同 relativelayout 和 framelayout 一樣我們都熟悉,只是有一些額外的功能。

在gradle中新增依賴:

compile 'com.android.support:percent:23.0.0'

這個庫提供了:

支援的屬性有:

layout_widthpercentlayout_heightpercent、 

layout_marginpercentlayout_marginleftpercent、 

layout_margintoppercentlayout_marginrightpercent、 

layout_marginbottompercentlayout_marginstartpercentlayout_marginendpercent

簡單的使用舉例:

百分比布局

參考位址 螢幕的適配是我們android開發最經常做的事情之一,我們一直指望著能夠一套布局適配所有。於是在android5.0之後,提供了android support percent lib,這樣我們可以盡情的使用。使用的時候,我們嗯需要設定的有 layout marginpercent layo...

百分比布局

其中相對布局和幀布局官方是有支援庫的 compile com.android.support percent 25.3.0 但線性布局並沒有 public class percentlinearlayout extends linearlayout override protected void o...

Android百分比布局的使用

不經意見發現android支援百分比布局了,使用android percent support這個庫就可以做到了。內心是竊喜的,這樣好多布局就變得簡單多了。這個庫提供了 percentrelativelayout percentframelayout,通過名字就可以看出,這是繼承自framelayo...