Android 適配無(wú)難事 UniversalLayout

不建議使用

雖然該方法帶來(lái)了開(kāi)發(fā)上的便利堪伍,但違背了Google設(shè)計(jì)上的理念,多種屏幕使用同一種尺寸在平板上會(huì)顯得字體和圖標(biāo)特別大觅闽,還是推薦老老實(shí)實(shí)的去多寫(xiě)幾個(gè)布局來(lái)適配屏幕帝雇。

上一版本的介紹之前寫(xiě)過(guò),的只是源碼一片混亂蛉拙,介紹也不清楚尸闸,并且實(shí)際應(yīng)用遇到各種不便決定重寫(xiě)。本來(lái)打算是花一個(gè)星期的孕锄,后來(lái)各種原因拖到現(xiàn)在才繼續(xù)完成吮廉,功能基本一致重構(gòu)再完成也就一兩天的事。確實(shí)要反思下自己的拖延癥了畸肆。廢話不多說(shuō)先介紹如何改進(jìn)和使用宦芦。
GitHub地址:https://github.com/brady9308/universal-layout

UniversalLayout 新版特性

添加了代碼提示,再也不擔(dān)心敲錯(cuò)參數(shù)名了轴脐;
優(yōu)化參數(shù)解析调卑,更加合理智能的參數(shù)解析,不再必須附帶參數(shù)修飾了大咱;
加入新測(cè)量方法恬涧,還有未完成的功能敬請(qǐng)期待;

UniversalLayout 的導(dǎo)入

  1. 在項(xiàng)目根目錄build.gradle添加repositories徽级,注意是項(xiàng)目根目錄的气破,不是項(xiàng)目的build.gradle
    repositories {
        //其他maven庫(kù)...
        maven { url "https://jitpack.io" }
    }
    
    
  2. 在項(xiàng)目的build.gradle添加dependencies
    dependencies {
        compile 'com.github.brady9308:universal-layout:1.1.0'
    }
    
    

版本歷史

  • 1.1.0版本
    重構(gòu)代碼結(jié)構(gòu),拆分類文件
    添加百分比以自身為比例計(jì)算
    添加百分比以父控件比例是否加入padding值計(jì)算設(shè)置
    添加布局文件參數(shù)提示
    修改簡(jiǎn)化參數(shù)名稱
    修改基礎(chǔ)值默認(rèn)為自適應(yīng)餐抢、屏幕现使、寬度
    修改min、max的計(jì)算方式支持任意空間設(shè)置
    不兼容1.0.x版本旷痕,但兩個(gè)版本可以共存
    
  • 1.0.x版本
    初始版本
    

UniversalLayout 的使用之自動(dòng)適配

這是推薦的方法先進(jìn)行介紹碳锈,布局會(huì)自動(dòng)根據(jù)設(shè)計(jì)稿的尺寸和屏幕尺寸自動(dòng)適配,再也不用考慮設(shè)計(jì)的單位要換算為多少dp和多少sp了欺抗。只需要你定義設(shè)計(jì)稿的尺寸售碳,一切都由布局自動(dòng)完成。

  1. 在主題存放設(shè)計(jì)的尺寸

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="layout_widthDesign">640px</item>
        <item name="layout_heightDesign">1136px</item>
    </style>
    

    或者自定義一個(gè)Style樣式存放設(shè)計(jì)的尺寸绞呈,多個(gè)尺寸就定義多個(gè)

    <style name="Design320x568">
        <item name="layout_widthDesign">320px</item>
        <item name="layout_heightDesign">568px</item>
    </style>
    <style name="Design640x1136">
        <item name="layout_widthDesign">640px</item>
        <item name="layout_heightDesign">1136px</item>
    </style>
    <style name="LayoutWrapWrap">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
    </style>
    
  2. 針對(duì)主題定義的設(shè)計(jì)尺寸贸人,最簡(jiǎn)單了不需要特殊屬性設(shè)置

    <?xml version="1.0" encoding="utf-8"?>
    <silicar.tutu.universal.widget.UniversalLinearLayout
        android:orientation="vertical"
        android:gravity="center"
        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">
    
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@mipmap/temp"
            app:layout_widthExt="300"
            app:layout_heightExt="200"/>
    
    </silicar.tutu.universal.widget.UniversalLinearLayout>
    
    640x1136預(yù)覽效果
  3. 設(shè)計(jì)換人了,新的設(shè)計(jì)稿和原來(lái)的尺寸不一樣怎么辦佃声,不急我們也跟著換尺寸艺智,在父控件添加app:childStyle="@style/Design320x568"指定新的設(shè)計(jì)稿尺寸

    <?xml version="1.0" encoding="utf-8"?>
    <silicar.tutu.universal.widget.UniversalLinearLayout
        android:orientation="vertical"
        android:gravity="center"
        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"
        app:childStyle="@style/Design320x568">
    
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@mipmap/temp"
            app:layout_widthExt="300"
            app:layout_heightExt="200"/>
    
    </silicar.tutu.universal.widget.UniversalLinearLayout>
    

    需要說(shuō)明的是,這里只改變子控件的設(shè)計(jì)稿尺寸圾亏,不傳遞的就是說(shuō)子控件的子控件是不改變的十拣,必須另外指定

    320x568預(yù)覽效果
  4. 只修改某個(gè)控件的設(shè)計(jì)尺寸封拧,這個(gè)適配方案就這么考慮的,每個(gè)子控件都有自己的設(shè)計(jì)稿尺寸夭问,都能指定設(shè)計(jì)稿尺寸app:layout_widthDesign="480px" app:layout_heightDesign="800px"

    <?xml version="1.0" encoding="utf-8"?>
    <silicar.tutu.universal.widget.UniversalLinearLayout
        android:orientation="vertical"
        android:gravity="center"
        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"
        app:childStyle="@style/Design320x568">
    
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@mipmap/temp"
            app:layout_widthDesign="480px"
            app:layout_heightDesign="800px"
            app:layout_widthExt="300"
            app:layout_heightExt="200"/>
    
    </silicar.tutu.universal.widget.UniversalLinearLayout>
    

    說(shuō)明下屬性的優(yōu)先級(jí)泽西,子控件尺寸>父控件尺寸>主題尺寸

    480x800預(yù)覽效果

UniversalLayout 的使用之百分比

UniversalLayout的就是基于Google官方的PercentLayout擴(kuò)展重構(gòu)的。因此百分比的支持是必須的,在原來(lái)的基礎(chǔ)上又進(jìn)行了擴(kuò)展,使用更加方便了毅桃。

  1. 以屏幕寬度為參照的百分比昔榴,百分比的默認(rèn)方法

    <?xml version="1.0" encoding="utf-8"?>
    <silicar.tutu.universal.widget.UniversalLinearLayout
        android:orientation="vertical"
        android:gravity="center"
        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">
    
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@mipmap/temp"
            app:layout_widthExt="50%"
            app:layout_heightExt="30%"/>
    
    </silicar.tutu.universal.widget.UniversalLinearLayout>
    
    屏幕寬度百分比
  2. 以屏幕高度為參照的百分比

    <?xml version="1.0" encoding="utf-8"?>
    <silicar.tutu.universal.widget.UniversalLinearLayout
        android:orientation="vertical"
        android:gravity="center"
        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">
    
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@mipmap/temp"
            app:layout_widthExt="50%h"
            app:layout_heightExt="30%h"/>
    
    </silicar.tutu.universal.widget.UniversalLinearLayout>
    
    屏幕高度百分比
  3. 以父控件寬度為參照的百分比(高度參考項(xiàng)目例子,不舉例了)

    <?xml version="1.0" encoding="utf-8"?>
    <silicar.tutu.universal.widget.UniversalLinearLayout
        android:orientation="vertical"
        android:gravity="center"
        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">
    
        <silicar.tutu.universal.widget.UniversalLinearLayout
            android:orientation="vertical"
            android:gravity="center"
            android:background="#ccc"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_marginExt="5%">
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="fitXY"
                android:src="@mipmap/temp"
                app:layout_widthExt="50%p"
                app:layout_heightExt="30%p"/>
        </silicar.tutu.universal.widget.UniversalLinearLayout>
    
    </silicar.tutu.universal.widget.UniversalLinearLayout>
    
    父控件寬度百分比
  4. 以自身為參照的百分比

    <?xml version="1.0" encoding="utf-8"?>
    <silicar.tutu.universal.widget.UniversalLinearLayout
        android:orientation="vertical"
        android:gravity="center"
        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">
    
        <silicar.tutu.universal.widget.UniversalLinearLayout
            android:orientation="vertical"
            android:gravity="center"
            android:background="#ccc"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_marginExt="5%">
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="fitXY"
                android:src="@mipmap/temp"
                app:layout_widthExt="100%oh"
                app:layout_heightExt="30%ph"/>
        </silicar.tutu.universal.widget.UniversalLinearLayout>
    
    </silicar.tutu.universal.widget.UniversalLinearLayout>
    

    該功能還未完成,存在點(diǎn)小問(wèn)題50%o,50%ow,50%oh,多數(shù)情況還是能使用的

    自身高度百分比

適配的時(shí)候建議寬度作為基礎(chǔ),默認(rèn)也是以寬度為基礎(chǔ)非竿,Android的屏幕比不全都是9:16,不同的手機(jī)會(huì)有不同谋竖,Nexus 4(768x1280)和Galaxy Nexus(720x1280)都是4.7寸屏红柱,但比例不一樣。

UniversalLayout 動(dòng)態(tài)設(shè)置

難免需要用到蓖乘,比如在ListView中設(shè)置item的高度锤悄,在代碼中使用UniversalLayout有兩種情況。

  • 父控件是UniversalLayout并設(shè)置了相應(yīng)屬性
        UniversalLinearLayout.LayoutParams params = (UniversalLinearLayout.LayoutParams) codeView.getLayoutParams();
        UniversalLayoutInfo info = params.getUniversalLayoutInfo();
        info.width.value = 0.8f;
        //SampleModel model = (SampleModel) info.width.model;
        //model.setMode(BaseModel.modePercent).setObj(BaseModel.objScreen);
        info.width.model = new SampleModel(BaseModel.modePercent, BaseModel.objScreen, true);
        info.height.value = 50;
        codeView.requestLayout();
  • 普通布局嘉抒、父控件是UniversalLayout未設(shè)置屬性
        UniversalValue universalValue = new UniversalValue(300, new SampleModel().getDefaultDesign());
        codeView2.getLayoutParams().width = (int) UniversalDimens.getUniversalDimens(universalValue, UniversalLayoutHelper.getDisplay());
        codeView2.getLayoutParams().height = (int) UniversalDimens.getUniversalDimens(universalValue, UniversalLayoutHelper.getDisplay());
        codeView2.requestLayout();

本作品采用知識(shí)共享署名-非商業(yè)性使用-相同方式共享 4.0 國(guó)際許可協(xié)議進(jìn)行許可零聚。轉(zhuǎn)載請(qǐng)保留作者及原文鏈接

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市些侍,隨后出現(xiàn)的幾起案子隶症,更是在濱河造成了極大的恐慌,老刑警劉巖岗宣,帶你破解...
    沈念sama閱讀 211,376評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蚂会,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡耗式,警方通過(guò)查閱死者的電腦和手機(jī)胁住,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)刊咳,“玉大人彪见,你說(shuō)我怎么就攤上這事∮榘ぃ” “怎么了余指?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,966評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)让蕾。 經(jīng)常有香客問(wèn)我浪规,道長(zhǎng),這世上最難降的妖魔是什么探孝? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,432評(píng)論 1 283
  • 正文 為了忘掉前任笋婿,我火速辦了婚禮,結(jié)果婚禮上顿颅,老公的妹妹穿的比我還像新娘缸濒。我一直安慰自己,他們只是感情好粱腻,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,519評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布庇配。 她就那樣靜靜地躺著,像睡著了一般绍些。 火紅的嫁衣襯著肌膚如雪捞慌。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,792評(píng)論 1 290
  • 那天柬批,我揣著相機(jī)與錄音啸澡,去河邊找鬼。 笑死氮帐,一個(gè)胖子當(dāng)著我的面吹牛嗅虏,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播上沐,決...
    沈念sama閱讀 38,933評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼皮服,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了参咙?” 一聲冷哼從身側(cè)響起龄广,我...
    開(kāi)封第一講書(shū)人閱讀 37,701評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎昂勒,沒(méi)想到半個(gè)月后蜀细,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,143評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡戈盈,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,488評(píng)論 2 327
  • 正文 我和宋清朗相戀三年奠衔,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片塘娶。...
    茶點(diǎn)故事閱讀 38,626評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡归斤,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出刁岸,到底是詐尸還是另有隱情脏里,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評(píng)論 4 329
  • 正文 年R本政府宣布虹曙,位于F島的核電站迫横,受9級(jí)特大地震影響番舆,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜矾踱,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,896評(píng)論 3 313
  • 文/蒙蒙 一恨狈、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧呛讲,春花似錦禾怠、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,742評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至雷逆,卻和暖如春弦讽,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背膀哲。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工坦袍, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人等太。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓捂齐,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親缩抡。 傳聞我的和親對(duì)象是個(gè)殘疾皇子奠宜,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,494評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容