1
我送「活動分數」到doinbackground然後在成績的活動運行的功能,但得到 「只有創建視圖層次可以觸摸其觀點原來的線程。」關於「birinci.setText(txt);」線。Android的語境薪火doInBackground
我在這裏丟失了什麼看起來使用相同的上下文?
Scores Activity
{
Object[] stuff = {this.dhn, Scores.this};
ConnectXML runXML = new ConnectXML();
runXML.execute(stuff);
}
public void setScoreListUpdate(String txt)
{
birinci.setText(txt);
}
private Scores myScores;
protected String doInBackground(Object... arguments) {
myScores = (Scores)stuff[1];
myScores.setScoreListUpdate(result);
}
是的,我的錯!我把myScores.setScoreListUpdate(result);關於postExecute的 其工作正常。謝謝你的幫助 – Mert 2012-01-15 00:38:09