从xml中定义的内容中获取textColor attr

时间:2015-04-28 16:20:15

标签: android xml attributes textview

我正在尝试获取在我的CustomTextView中的xml布局中设置的android:textColor。 如何从AttributeSet attrs获取它?

1 个答案:

答案 0 :(得分:2)

你可以试试这个:

final String androidNamespace = "http://schemas.android.com/apk/res/android";
String textColor = attrs.getAttributeValue(androidNamespace, "textColor");