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