1
Android中存在TypedArray對象getType(int index)
由android documentationTypedArray.getType(int index)的整數值對應什麼?
描述的文件,在我的研究,我找不到它返回一個int上的一個方法是什麼返回對應於整數。
有誰知道嗎?
Android中存在TypedArray對象getType(int index)
由android documentationTypedArray.getType(int index)的整數值對應什麼?
描述的文件,在我的研究,我找不到它返回一個int上的一個方法是什麼返回對應於整數。
有誰知道嗎?
TypedArray對象getType(int index)
方法返回指定索引處的屬性類型。 https://developer.android.com/reference/android/content/res/TypedArray.html#getType(int)
有關示例
如果我們有字符串作爲XML數據類型,則返回的int值將是3,如果該數據的類型是字符串。即TYPE_STRING,
,並且如果數據是浮動然後返回將是4,如果數據類型是浮法即TYPE_FLOAT
詳情值參閱開始前綴https://developer.android.com/reference/android/util/TypedValue.html外表爲常數TYPE_
希望澄清!
請參閱'android.util.TypedValue'文檔 – pskink