アクティビティにプログレスバーがあります。画面の向きが変更されると、プログレスバーがゼロから機能し始めます。方向が変化している間、彼の状態を保存する方法は?
Thread t = new Thread(new Runnable() {
public void run() {
try {
for (cnt = 1; cnt < max; cnt++) {
TimeUnit.MILLISECONDS.sleep(100 * randomNum / 50);
// refresh
h.post(updateProgress);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
});
t.start();