程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-在代碼中如何獲取一個屬性的值

android-在代碼中如何獲取一個屬性的值

編輯:編程綜合問答
在代碼中如何獲取一個屬性的值

我想在代碼中檢索textApperanceLarge的int值。我用的下面的代碼,但是並不能從TypedValue提取int值?

TypedValue typedValue = new TypedValue(); 
((Activity)context).getTheme().resolveAttribute(android.R.attr.textAppearanceLarge, typedValue, true);

如何修改代碼實現這個方法?

最佳回答:


從 style 中獲取 textSize 屬性的值,添加下面的代碼:

int[] textSizeAttr = new int[] { android.R.attr.textSize };
int indexOfAttrTextSize = 0;
TypedArray a = context.obtainStyledAttributes(typedValue.data, textSizeAttr);
int textSize = a.getDimensionPixelSize(indexOfAttrTextSize, -1);
a.recycle();

你可以參考TextAppearance.Large

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved