我正在构建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"/>
我在调用context.getApplicationContext()
时收到NullPointerException。
有没有人遇到过这个?
答案 0 :(得分:1)
我想你应该试试这个:
this.getContext().getApplicationContext()
这不应该返回空指针异常。
答案 1 :(得分:0)
检查下面的链接,了解何时使用getApplicationContext()以及何时使用活动上下文
When to call activity context OR application context?
大多数情况下,最好使用Activity上下文
答案 2 :(得分:0)