本文介绍了如何使用名称空间"android"获取属性在自定义TextView中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在自定义TextView
中,我试图获取text
属性的值(例如).
In custom TextView
I'm trying to obtain value of a text
attribute (for example).
TypedArray values = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.TextView);
String text = values.getString(com.android.internal.R.styleable.TextView_text);
但是我收到此错误消息:
But I'm getting this error message:
那么如何检索TextView的默认"属性?
So how to retrieve "default" attributes of TextView?
推荐答案
internal.R类不可见,因此您只能通过它们的访问器方法读取它们,并且只能在您的超级构造函数被调用后读取.
The internal.R class isn't visible so you can only read them through their accessor methods and only once your super constructor has been called.
请参见 TextView源,以查看其内部工作方式.
See the TextView source to see how it works internally.
这篇关于如何使用名称空间"android"获取属性在自定义TextView中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!