完全解析android通过代码实现百分比适配方案

2016-10-12  本文已影响0人  张飞雨

何为百分比这和线性布局中的比重weight属性的功能比较类似,假如我以480*800为基准的话!我以px控制距离,比如距左边10px,好了我在480*800的分辨率下一定能得到想要的效果,那么在别的分辨率上怎么办呢?我们知道我们可以得到手机的实际宽高。通过手机宽高的比值就可以得到我们想要的距离,那么此时我们对控件的属性进行动态赋值就可以了。

好了,进入正题,我们以鸿神的代码以基准进行分析,首先在清单文件里面定义出我们的基准,以多少分辨率为基准:

<meta-data android:name="degin_Width" android:value="720">

<meta-data android:name="degin_Height" android:value="1280">


因为需要重新计算控件的height、width、margin、padding等等,我们需要一个入口,布局文件的属性什么时候被解析出来换算成View的子对象属性,当然是LayoutInflater.java这个类了:
解析开始:布局解析的入口函数
public View inflate(int resource, ViewGroup root, boolean attachToRoot) {

if (DEBUG) System.out.println("INFLATING from resource: " + resource);

XmlResourceParser parser = getContext().getResources().getLayout(resource);

try {

//就是它继续跟踪

return inflate(parser, root, attachToRoot);

} finally {

parser.close();

}

}

if (root != null) {

if (DEBUG) {

System.out.println("Creating params from root: " +

root);

}

// 这里就是关键代码,如果父View不为空,则为子View设置布局参数通过父View的generateLayoutParams的方法

params = root.generateLayoutParams(attrs);

if (!attachToRoot) {

// Set the layout params for temp if we are not

// attaching. (If we are, we use addView, below)

temp.setLayoutParams(params);

}

}

所以自定义父控件时重写:generateLayoutParams方法

@Override

publicLayoutParams generateLayoutParams(AttributeSet attrs)

{

return newAutoLinearLayout.LayoutParams(getContext(),attrs);

}

为布局套上一层自定义的布局参数:

public static classLayoutParamsextendsLinearLayout.LayoutParams

implementsAutoLayoutHelper.AutoLayoutParams

{

privateAutoLayoutHelper.AutoLayoutInfo mAutoLayoutInfo;

publicLayoutParams(Context c,AttributeSet attrs)

{

super(c,attrs);

//这里开始记率布局参数

mAutoLayoutInfo = AutoLayoutHelper.getAutoLayoutInfo(c,attrs);

}

@Override

publicAutoLayoutHelper.AutoLayoutInfo getPercentLayoutInfo()

{

returnmAutoLayoutInfo;

}

publicLayoutParams(intwidth, intheight)

{

super(width,height);

}

publicLayoutParams(ViewGroup.LayoutParams source)

{

super(source);

}

publicLayoutParams(MarginLayoutParams source)

{

super(source);

}

}

ok,最后就是转换布局参数了,视图显示出来基本分三步,测量、确定位置信息、画图,测量:根据布局参数测出控件需要多大控件,所以把转化放在测量前面,protected voidonMeasure(intwidthMeasureSpec, intheightMeasureSpec)

{

if(!isInEditMode())

mPercentLayoutHelper.adjustChildren();

super.onMeasure(widthMeasureSpec,heightMeasureSpec);

}

so,开始为所有子控件重新分配参数:

public voidadjustChildren()

{

for(inti =0,n = mHost.getChildCount();i < n;i++)

{

View view = mHost.getChildAt(i);

ViewGroup.LayoutParams params = view.getLayoutParams();

if(paramsinstanceofAutoLayoutParams)

{

AutoLayoutInfo info =

((AutoLayoutParams) params).getPercentLayoutInfo();

if(info !=null)

{

supportTextSize(view,info);

supportPadding(view,info);

if(paramsinstanceofViewGroup.MarginLayoutParams)

{

info.fillMarginLayoutParams((ViewGroup.MarginLayoutParams) params,

getAvailableWidth(),getAvailaleHegiht(),getDesignWidth(),getDesignHeight());

}else

{

info.fillLayoutParams(params,

getAvailableWidth(),getAvailaleHegiht(),getDesignWidth(),getDesignHeight());

}

}

}

}

}

主要计算公式:布局文件里标的值/参考值*手机实际宽高值

right = (int) (info.paddingRight *1.0f/ mDesignWidth * mAvailableWidth);

到此我们就完成了百分比测量。

android适配百分库

上一篇下一篇

猜你喜欢

热点阅读