读取layout属性-AttributeSet TypedArray
发布日期:2021-09-30 11:34:34 浏览次数:6 分类:技术文章

本文共 2055 字,大约阅读时间需要 6 分钟。

假如说要读取layout_height属性

两种方式,第一种

  /**     * Returns the value of the specified attribute as a string representation.     *      * @param index Index of the desired attribute, 0...count-1.     *      * @return A String containing the value of the attribute, or null if the     *         attribute cannot be found.     */    public String getAttributeValue(int index);String namespace = "http://schemas.android.com/apk/res/android";viewHeight = attrs.getAttributeIntValue(namespace, "layout_height", ViewGroup.LayoutParams.MATCH_PARENT);

layout_height=“match_parent”

 viewHeight 取到的值为 “match_parent”

layout_height=“100dip”

 viewHeight 取到的值为 “100dip”

如果用 getAttributeIntValue 读取的话, 无法正确读取到数值

/**     * Return the integer value of 'attribute'.     *      * @param namespace Namespace of attribute to retrieve.     * @param attribute The attribute to retrieve.     * @param defaultValue What to return if the attribute isn't found.     *      * @return Resulting value.     */    public int getAttributeIntValue(String namespace, String attribute, int defaultValue);

很显然这种方式读取数值不是很爽

第二种方式: 通过TypedArray读取

int[] arr = new int[] { android.R.attr.layout_width, android.R.attr.layout_height };		TypedArray typedArray = context.obtainStyledAttributes(attrs, arr);		// MATCH_PARENT -1 WRAP_CONTENT-2		try {			// String namespace = "http://schemas.android.com/apk/res/android";			// initViewHeight = attrs.getAttributeIntValue(namespace, "layout_height", ViewGroup.LayoutParams.MATCH_PARENT);			TypedValue typeValue = typedArray.peekValue(1);			if (typeValue.type == TypedValue.TYPE_DIMENSION) {// 0x10				initViewHeight = (int) typedArray.getDimension(1, ViewGroup.LayoutParams.MATCH_PARENT);				initViewHeight = TypedValue.complexToDimensionPixelSize(typeValue.data, getResources().getDisplayMetrics());			} else if (typeValue.type == TypedValue.TYPE_FIRST_INT) {// 0x05				initViewHeight = typeValue.data;			}		} catch (Exception e) {			// java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x10			e.printStackTrace();		}		typedArray.recycle();

转载地址:https://blog.csdn.net/id19870510/article/details/52982527 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:JS 表单submit() 提交无效的问题
下一篇:java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x10

发表评论

最新留言

做的很好,不错不错
[***.243.131.199]2024年04月07日 15时13分58秒