码迷,mamicode.com
首页 > 移动开发 > 详细

Android getAttributeIntValue()详解-霞辉

时间:2016-12-19 13:49:54      阅读:1105      评论:0      收藏:0      [点我收藏+]

标签:intval   nbsp   通过   getattr   res   int   value   space   今天   

  经常使用getAttributeIntValue()方法,但是大多使用的形式是attrs.getAttributeFloatValue(null, "xxx", 0);只是在中间传一个字符串,来获取属性值

今天突然看到某程序的源码中,三个参数都传入了值。网上找attrs.getAttributeFloatValue方法的详解,结果都不是很满意。从android源码中找到如下信息。

     正文,具体的使用场景就不多说了,主要说该方法的参数解析

 

getAttributeIntValue()--通常--需要传入3个参数,分别是

String namespace, String attribute, int defaultValue

namespace是命名空间。

attribute是在布局文件中所写的属性

defaultvalue是当通过getAttributeIntValue()去查找时,没有找到相应的值,值默认返回defaultvalue。

 

Android API文档如下

public abstract int getAttributeIntValue (String namespace, String attribute, int defaultValue)

Added in API level 1

Return the integer value of ‘attribute‘.

Parameters
namespace Namespace of attribute to retrieve.
attribute The attribute to retrieve.
defaultValue What to return if the attribute isn‘t found.
Returns
  • Resulting value.

 

Android getAttributeIntValue()详解-霞辉

标签:intval   nbsp   通过   getattr   res   int   value   space   今天   

原文地址:http://www.cnblogs.com/1124hui/p/6196860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!