我正在构建一个TextView
子类来更改插入到android:text
. 例如,我想将整个文本大写,但为了确保需要它,我需要访问 Application 实例(我有一个布尔值来判断它是否必须大写)。
我实现了这个子类:
public class UpperTextView extends TextView {
private Context context;
public UpperTextView(Context context) {
super(context);
this.context = context;
}
public UpperTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
this.context = context;
}
public UpperTextView(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
}
@Override
public void setText(CharSequence text, BufferType type) {
//I get a NullPointerException here since var context is null
Context applicationContext = context.getApplicationContext();
if (text != null && applicationContext instanceof MyApplication && applicationContext.doUppercase()) {
MyApplication myApp = (MyApplication) applicationContext;
myApp.getLanguagesController().getLocalizedString(text.toString().toUpperCase());
}
super.setText(text, type);
}
}
在布局中,我有这样声明
<my.package.UpperTextView
android:id="@+id/foo"
android:text="bar"/>
调用时出现 NullPointerException context.getApplicationContext()
。
有人已经遇到过这个吗?