我有一个自定义的 TextView,我想在构造函数中找出相应的 xml 布局中是否声明了某个 XML 属性。
<com.stuff.CustomTextView
android:id="@+id/tv01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="8sp" />
public CustomTextView(Context context, AttributeSet attrs) {
super(context, attrs);
// find out if textSize was defined
if (!wasAttributeDefined(attrs,"textSize")) // EDIT
setTextSize(10); // EDIT
}
我不知道这是否有效,但我尝试了以下方法(没有运气):
attrs.getAttributeFloatValue("android","textSize",(float)-1.0);
谢谢。
编辑:
好吧,如果有人感兴趣,有一种(可能不是很好)解决这个问题的方法。有点像:
private boolean wasAttributeDefined(AttributeSet attrs, String name) {
for (int i=0; i<attrs.getAttributeCount(); i++)
if (attrs.getAttributeName(i).equals(name))
return true;
return false;
}