首页 > 代码库 > Android下屏幕适配<二>
Android下屏幕适配<二>
Android下屏幕适配:
适配:即当前应用在不同的手机上面显示相同的效果。适配前需要首先确定当前手机所属像素密度类型(如:xhdpi、hdpi、mdpi等),
以下已华为G700、模拟器为例,计算其像素密度。
案例一:
手机型号:G700
手机分辨率:1280*720 (注:手机两个直角边上分别放置了1280及720个像素点)
手机尺寸大小:5英寸(手机对角线长度)
假设a,b分别为两个直角边,c为斜边,由勾股定理可得出计算方式:sqrt(a*a+b*b)/c
计算结果:sqrt(1280*1280+720*720)/5 ≈ 293.72dpi
根据google官方文档说明得出,当前手机最接近320dpi,则将其归纳在xhdpi手机范围内,即1dp=2px;
案例二:
型号:模拟器
手机分辨率:800*480(注:手机两个直角边上分别放置了800及480个像素点)
尺寸大小:3.7英寸(手机斜边大小)
计算结果:sqrt(800*800+480*480)/3.7 ≈ 252.15dpi
根据google官方文档(图1-1)得出,当前手机接近240dpi,则将其归纳在hdpi手机范围内,即1dp=1.5px。
参照以上方式可将市场上大多数手机划分为5个像素密度等级,分别为:
ldpi: 120dpi,像素密度与dp转换关系为:1dp = 0.75px
mdpi: 160dpi,像素密度与dp转换关系为:1dp = 1px
hdpi: 240dpi,像素密度与dp转换关系为:1dp = 1.5px
xhdpi: 320dpi,像素密度与dp转换关系为:1dp = 2px
xxhdpi: 480dpi,像素密度与dp转换关系为:1dp = 3px
(注:以下案例就当前两款手机进行屏幕适配测试)
适配方式一:图片适配
不同像素密度的手机加载工程资源文件(res)中不同资源图片,以上述两款手机为例。布局代码如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity" ><ImageViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:background="@drawable/a" /></RelativeLayout>
适配方式二:dimens.xml文件适配
dimens.xml存在于工程资源(res)文件夹中不同values(如:value-1280x720、value-800x480)文件夹下,可用于指定控件大小,不同像素密度手机加载不同values文件夹下的dimens.xml文件,使用方式如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context=".MainActivity" >
<!-- 不同的手机加载不同的dp -->
<TextViewandroid:background="#987654"android:layout_width="@dimen/width"android:layout_height="wrap_content"android:text="@string/hello_world" /></LinearLayout>
模拟器(hdpi):加载dimens.xml资源文件,位于res/value-800x480文件夹下
<resources><dimen name="width">160dp</dimen></resources>
根据上述hdpi dp和px的转换关系1dp = 1.5px,则160dp = 240px,当前控件宽度应该位于屏幕中间位置。
G700(xhdpi):加载dimens.xml资源文件,位于res/value-1280x720文件夹下
<resources><dimen name="width">180dp</dimen></resources>
根据上述xhdpi dp和px的转换关系1dp = 2px,则180dp = 360px,当前控件宽度应该位于屏幕中间位置。
适配方式三:布局文件适配
不同分辨率的手机,加载不同的布局文件已达到适配效果。创建多个layout(如:layout-1280x720、layout-800x480)文件夹用于存放不同像素密度手机所需布局文件。
模拟器(hdpi):加载activity_main.xml布局文件,位于res/layout-800x480文件夹下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity" ><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="800*480手机会去加载的布局文件" /></RelativeLayout>G700(xhdpi):加载activity_main.xml布局文件,位于res/layout-1280x720文件夹下:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity" ><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="1280*720手机会去加载的布局文件" /></RelativeLayout>
适配方式四:java代码适配
通过android相应api获取当前手机的宽高像素值,按比例分配屏幕中控件的宽高以达到适配效果。核心代码如下:
布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity" ><TextViewandroid:id="@+id/tv"android:background="#000000"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/hello_world" /></RelativeLayout>
activity中onCreate核心代码:
TextView tv = (TextView) findViewById(R.id.tv);//获取封装当前手机屏幕信息对象,用于存放宽高值DisplayMetrics metrics = new DisplayMetrics();//给当前屏幕设置宽高getWindowManager().getDefaultDisplay().getMetrics(metrics);//获取高度Constant.srceenHeight = metrics.heightPixels;//获取宽度Constant.srceenWidth = metrics.widthPixels;Log.i(tag, "Constant.srceenHeight = "+Constant.srceenHeight);Log.i(tag, "Constant.srceenWidth = "+Constant.srceenWidth);//宽高各占50%RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams((int)(Constant.srceenWidth*0.5+0.5), (int)(Constant.srceenHeight*0.5+0.5));tv.setLayoutParams(layoutParams);
适配方式五:权重适配
通过android提供的(权重)剩余空间分配,已达到适配效果。显示界面加载布局文件如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="horizontal"tools:context=".MainActivity" ><TextView android:background="#000000"android:layout_width="0dp"android:layout_weight="1"android:layout_height="match_parent"/><TextView android:background="#123456"android:layout_width="0dp"android:layout_weight="1"android:layout_height="match_parent"/></LinearLayout>
Android下屏幕适配<二>