我已经覆盖了 textview 类,并且我想在 textappearance 很小的时候执行一些操作。
如何检查xml布局文件设置的textappearance?
我已经覆盖了 textview 类,并且我想在 textappearance 很小的时候执行一些操作。
如何检查xml布局文件设置的textappearance?
我找到了一种解决方法:
private int getTextAppearance(AttributeSet attrs, int defStyle) {
int answer = defStyle;
for(int i=0; i<attrs.getAttributeCount(); i++) {
if(attrs.getAttributeNameResource(i) == android.R.attr.textAppearance) {
String attrStringValue = attrs.getAttributeValue(i);
if(attrStringValue != null) {
attrStringValue = attrStringValue.replace("?", "");
answer = Integer.parseInt(attrStringValue);
}
}
}
return answer;
}
如果构造函数调用此函数,我可以检查已设置为 textappearance 的 id。
if(getTextAppearance(attrs, -1) == android.R.attr.textAppearanceSmall) {}