我想EditText
在ClickableSpan
.AsynkTask
我为此使用了下一个代码:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
et = (EditText)findViewById(R.id.et);
...
class makeLinksAsync extends AsyncTask<String, String, EditText> {
private EditText buffer;
protected EditText doInBackground(String... texts) {
buffer = new EditText(context); // here is an error
SpannableString spanStr = new SpannableString("word");
...
buffer.append(spanStr);
return buffer;
}
protected void onPostExecute(EditText linkedText) {
ed.setText(linkedText.getText());
}
}
}
当我在不同的模拟器和我自己的 Android2.3 设备上测试这段代码时,一切都很好,这段代码运行良好。但是在将 apk 上传到 GooglePlay 之后,我得到了一些崩溃报告,其中提到的行中有错误。日志报告是下一个:
java.lang.RuntimeException: An error occured while executing doInBackground()
...
Caused by: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
...
at lubart.apps.dictionary.DictionaryActivity$makeLinksAsync.doInBackground(DictionaryActivity.java:2233) // this line is mentioned in code
另外我应该说,这个问题并非出现在所有设备中,一些用户报告说一切正常。
你能帮我解决这个错误吗?