欢迎来到天天文库
浏览记录
ID:10247542
大小:525.50 KB
页数:7页
时间:2018-06-13
《最有效的android屏幕适配开发工具》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、最有效的Android屏幕适配开发工具文/腾讯优测吴宇焕相信开发同学都被安卓设备碎片化的问题折磨过,市面上安卓手机的主流屏幕尺寸种类繁多,给适配造成很大的困难。就算搞定了屏幕尺寸问题,各种分辨率又让人眼花缭乱,当你走出了前面所说的两大坑,很有可能又掉进“屏幕长宽比不同”的陷阱。。。说多了都是泪,我就想做一名安静的开发怎么这么难?经历过无数次跌跌撞撞,我总结出一些经验,想与大家一起分享。已知的屏幕适配方法:(1)按像素比:y/开发时用的屏幕像素=x/用户设备像素(2)按长度:用dip(假设屏幕尺寸基本不变)(3)按密
2、度:放在l、m、h文件夹(假设屏幕尺寸基本不变,dpi越大PX越大)而Android5.0Google官方推出了百分比布局支持库,意在解决大部分屏幕适配的问题。下面我就向大家详细介绍一下:Google百分比布局支持库(1)支持的布局布局PercentRelativeLayoutPercentFrameLayout(2)支持的属性属性layout_widthPercentlayout_heightPercentlayout_marginPercentlayout_marginLeftPercentlayout_mar
3、ginTopPercentlayout_marginRightPercentlayout_marginBottomPercentlayout_marginStartPercentlayout_marginEndPercent(3)使用方法1、加载android-support-percent-libdependencies{compile'com.android.support:percent:22.2.0'}2、PercentRelativeLayout
4、f-8"?>5、left"android:layout_width="0dp"android:layout_height="0dp"android:layout_parenthetical="true"android:background="#ff44aacc"app:layout_heightPercent="20%"app:layout_widthPercent="70%"android:text="width:70%;height:20%;"android:gravity="center"/>6、d:id="@+id/top_right"android:layout_width="0dp"android:layout_height="0dp"android:layout_parenthetical="true"android:layout_Creighton="@+id/top_left"android:background="#ffe40000"app:layout_heightPercent="20%"app:layout_widthPercent="30%"android:text="width:307、%;height:20%;"android:gravity="center"/>8、ght:80%;"android:gravity="center"/>3、PercentFrameLayout
5、left"android:layout_width="0dp"android:layout_height="0dp"android:layout_parenthetical="true"android:background="#ff44aacc"app:layout_heightPercent="20%"app:layout_widthPercent="70%"android:text="width:70%;height:20%;"android:gravity="center"/>6、d:id="@+id/top_right"android:layout_width="0dp"android:layout_height="0dp"android:layout_parenthetical="true"android:layout_Creighton="@+id/top_left"android:background="#ffe40000"app:layout_heightPercent="20%"app:layout_widthPercent="30%"android:text="width:307、%;height:20%;"android:gravity="center"/>8、ght:80%;"android:gravity="center"/>3、PercentFrameLayout
6、d:id="@+id/top_right"android:layout_width="0dp"android:layout_height="0dp"android:layout_parenthetical="true"android:layout_Creighton="@+id/top_left"android:background="#ffe40000"app:layout_heightPercent="20%"app:layout_widthPercent="30%"android:text="width:30
7、%;height:20%;"android:gravity="center"/>8、ght:80%;"android:gravity="center"/>3、PercentFrameLayout
8、ght:80%;"android:gravity="center"/>3、PercentFrameLayout
此文档下载收益归作者所有