读取layout属性-AttributeSet TypedArray

假如说要读取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();



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值