アンドロイドでUIを変更したい。アンドロイドの別のスレッドからuiを更新する
メインクラスは2番目のクラスを作成し、2番目のクラスはメインクラスのメソッドを呼び出すと、ランタイムにUIは更新されますが、プログラムクラッシュが発生します。
どうすればよいですか?
私のメインクラス:
public class FileObserverActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView) findViewById(R.id.textView1);
tv.setText("new world");
MyFileObserver myFileObserver = new MyFileObserver("/sdcard/", this);
myFileObserver.startWatching();
}
String mySTR = "";
TextView tv ;
public void event(String absolutePath,String path,int event)
{
mySTR = absolutePath+path+"\t"+event;
tv.setText(mySTR); // program crash here!
}
}
と私の第二のクラス:
public class MyFileObserver extends FileObserver
{
public String absolutePath;
FileObserverActivity fileobserveractivity;
public MyFileObserver(String path,FileObserverActivity foa)
{
super(path, FileObserver.ALL_EVENTS);
absolutePath = path;
fileobserveractivity = foa;
}
@Override
public void onEvent(int event, String path)
{
if (path == null)
{
return;
}
else if(event!=0)
{
fileobserveractivity.event(absolutePath, path, event);
}
else
{
return;
}
}
}
クラッシュのログはありますか? – ania
@aniaそれはあなたが別のスレッドでUIを変更することができないのでクラッシュします。UIで何かを変更したい場合は、独自のスレッド平均UIスレッドを使用する必要があります。 –