美文网首页Android iOS开发知识库第三方扩展
Android自动布局,一次编写全部设备适用

Android自动布局,一次编写全部设备适用

作者: Tenny1225 | 来源:发表于2017-08-25 14:48 被阅读80次

在做android项目中,遇到最多的问题就是适配,各种尺寸的机型,让开发者头痛,自己在开发中也存在这个问题,不过我目前的公司大多项目是demo的性质,但是最近一个产品化的项目,让我在适配问题上遇到了不少困难。

于是想要使用别人的研究成果,就找到了鸿祥大神写的https://github.com/hongyangAndroid/AndroidAutoLayout 库,他的设计思路是根据UI设计的效果图尺寸,然后在不同手机上根据比例进行缩放,感觉满足绝大多数适配需求,可惜大神太忙,这个库已经停止维护了。

针对鸿祥的设计思路,自己也写了一个自动布局的库https://github.com/tenny1225/AndroidAutoLayout,目地也是使用方式简单,尽量少改现有的代码。以下有部分照搬鸿祥博客里面的内容

假设我们拿到一张设计图:


Paste_Image.png

这样的设计图开发中很常见吧,有些公司可能需要自己去测量。

按照我们的思想:

布局直接抄设计图上的尺寸

对于布局文库应该这么写:

<com.xz.autoLayout.AutoRelativeLayout
android:layout_width="match_parent"
android:layout_height="86px"
android:layout_marginTop="26px"
android:background="#ffffffff">

<ImageView
    android:id="@+id/id_tv_add"
    android:layout_width="34px"
    android:layout_height="34px"
    android:layout_gravity="center_vertical"
    android:layout_marginLeft="276px"
    android:layout_marginTop="26px"
    android:src="@mipmap/add"
    />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_marginLeft="26px"
    android:layout_toRightOf="@id/id_tv_add"
    android:text="新增旅客"
    android:textColor="#1fb6c4"
    android:textSize="32px"
    />
</com.xz.autoLayout.AutoRelativeLayout>

可以看到只有第一个RelativeLayout修改成了自定义的AutoRelativeLayout,就可以做到根据设计图,自动适配。

用法

  1. 设定设计图尺寸

在Application的oncreate方法中加入:

  AutoLayoutManager.init(this,720,1280,false);//720×1280是ui设计图的尺寸
//第四隔参数是设计图是否有状态栏

2.修改布局文件
将所有布局文件中的第一个viewgroup修改成相应的Auto...Layout,目前实现的有
AutoLinearLayout,AutoRelativeyout,AutoFrameLayout,对于在其他的viewgroup,可以实现IAuto接口重写相应方法进行适配,具体参考AutoLinearLayout:

<?xml version="1.0" encoding="utf-8"?>
<com.xz.autoLayout.AutoLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="140px"
    android:layout_height="140px"
    android:gravity="center"
    android:orientation="vertical">
    <ImageView
        android:id="@+id/iv_icon"
        android:layout_width="80px"
        android:layout_height="80px"
        android:src="@mipmap/ic_launcher"
       android:tag="w-h" />

    <TextView
        android:id="@+id/tv_action_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8px"
        android:gravity="center"
        android:text="@string/next"
        android:textColor="?attr/actionBarTextColor"
        android:textSize="22px"

        />

</com.xz.autoLayout.AutoLinearLayout>

4.直接适配
可以调用auto方法进行适配,例如在baseActivity或者baseFragment中使用

AutoUtil.auto(View v)
  1. 对与长宽一致性问题
    由于长宽缩放的存在,所有在布局文件中,长宽同时设置为200px,其实最后显示他们长宽是不同的,此时可以设置tag "w-h"和"h-w"属性
<TextView
        android:layout_width="85px"
        android:layout_height="70px"
        android:layout_alignTop="@+id/iv_edit"
        android:layout_marginLeft="30px"
         android:tag="w-h" 
        android:layout_marginTop="30px"
        android:background="#aaffffff"
        android:gravity="center"
        android:text="@string/compare"
        android:textColor="?attr/actionBarTextColor" />

"w-h"表示宽度的尺寸缩放参考高度,"h-w"表示高度的尺寸缩放参考宽度。

  1. 适配模式
    这个库默认对所有view的所有属性进行了适配,所以就算你设置了某个属性值为12dp,它还是把他当做px对待进行缩放,所以对于不需要进行缩放的view,可以在tag中加入相应标志,让库忽略掉对应属性,下表面列出来可识别的tag标志
    not 表示对于view的所有属性都不适配
    !w不适配宽度
    !h不适配高度
    !p不适配padding
    !pl不适配paddingLeft
    !pt不适配paddingTop
    !pr不适配paddingRight
    !pb不适配paddingBottom
    !m不适配margin
    !ml不适配marginLeft
    !mt不适配marginTop
    !mr不适配marginRight
    !mb不适配marginBottom
    !maw不适配maxWidth
    !mah不适配maxHeight
    !miw不适配minWidth
    !mih不适配minHeight
    !ts不适配TextSize
    w-hwidth参照height缩放
    h-wheight参照width缩放
    ml-hmarginLeft参照height缩放
    mr-hmarginRight参照height缩放
    mt-wmarginTop参照width缩放
    mb-wmarginBottom参照width缩放
    pl-hpaddingLeft参照height缩放
    pr-hpaddingRight参照height缩放
    pt-wpaddingTop参照width缩放
    pb-wpaddingBottom参照width缩放
    maw-hmaxWidth参照height缩放
    mah-wmaxHeight参照width缩放
    miw-hminWidth参照height缩放
    mih-wminHeight参照width缩放
    ts-wTextSize参照width缩放
<TextView
        android:layout_width="85px"
        android:layout_height="70px"
        android:layout_alignTop="@+id/iv_edit"
        android:layout_marginLeft="30px"
         android:tag="w-h,ml-h"   <!--width参照height缩放,marginLeft参照height缩放-->
        android:layout_marginTop="30px"
        android:background="#aaffffff"
        android:gravity="center"
        android:text="@string/compare"
        android:textColor="?attr/actionBarTextColor" />

相关文章

  • Android自动布局,一次编写全部设备适用

    在做android项目中,遇到最多的问题就是适配,各种尺寸的机型,让开发者头痛,自己在开发中也存在这个问题,不过我...

  • 响应式布局总结

    什么是响应式布局? 简单来说就是:一套代码,兼容多个终端设备,能根据屏幕尺寸自动调整布局 响应式布局适用场景不多,...

  • Flex——告别CSS布局

    Flex 布局可以实现空间自动分配、自动对齐Flex 适用于简单的线性布局,复杂布局使用 Grid 布局注意:设为...

  • CSS 3 Flex布局

    Flex布局 flex布局可以实现空间自动分配自动对齐,适用于简单的线性布局。 flex基本概念 flex con...

  • Android纯代码编写布局

    概述:android动态效果免不了需要编写代码布局,所以记录一下常用布局组件的编写方式。 一、编写LinearLa...

  • 模拟QQDialog底部弹出

    先上效果图 2、编写布局 android:layout_width="match_parent" android:...

  • Facebook开源跨平台前端布局引擎Yoga

    1、背景 iOS、Android、web都有自己的布局系统: iOS:自动布局 autolayout。Androi...

  • Screengrab--Android 自动截屏工具

    screengrab --Android自动截屏工具,可用于各种Android设备 screengrab --和s...

  • 2020-05-05(补昨天记录)

    5.4 1. 自动布局只布局一次,一次就布局好,后面不会再继续布局了, 在layout当前不能使用自动布局 2.

  • 响应式布局

    弹性布局 浮动+百分比布局 Flex布局 悬浮+百分比布局 浮动+百分比布局好处 网页内容宽度自适应 多设备都适用...

网友评论

    本文标题:Android自动布局,一次编写全部设备适用

    本文链接:https://www.haomeiwen.com/subject/qjmudxtx.html