翻转设备时进度条重置

时间:2014-11-03 03:24:52

标签: android android-activity progress-bar

我有一个小问题,可能不是最难解决的问题,到目前为止我找不到任何东西:

在我的应用程序中,我使用连接到CountDownTimer的进度条。当我翻转设备时,进度条重置为0并且计时器不会导致时间到,而条形图仍位于中间位置。我使用两种不同的布局文件作为纵向/横向,但进度条定义并没有区别。

这是java代码:

mCountDownTimer=new CountDownTimer(6000,50) {

            @Override
            public void onTick(long millisUntilFinished) {
                Log.v("Log_tag", "Tick of Progress"+ i + millisUntilFinished);
                i++;
                mProgressBar.setProgress(i);

            }

            @Override
            public void onFinish() {
                i++;
                mProgressBar.setProgress(i);
                Toast toast = Toast.makeText(getApplicationContext(), "Time Up!", Toast.LENGTH_SHORT);
                toast.show();
                if(counter < DBAdapter.NUMBER_OF_QUESTIONS){
                    i=0;
                    newQuestion();
                }
                else endGame();
            }
        };

这是xml代码:

<ProgressBar
    android:id="@+id/progressBar"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:max="120"
    android:progress="0"
    android:visibility="visible" />

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

请注意,当发生翻转时,您的活动会被破坏并再次重新创建。因此局部变量中的值会丢失。

要避免丢失此类值,请使用onSaveInstanceState()onRestoreInstanceState()存储进度值并将其检索回来。

实施例,

@Override
protected void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
    outState.putInt("PROGRESS VALUE", i);
}

@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
    super.onRestoreInstanceState(savedInstanceState);
    i = savedInstanceState.getInt("PROGRESS VALUE");
}

哟可以在这里阅读更多相关信息,

http://developer.android.com/training/basics/activity-lifecycle/recreating.html

您可以在此处了解更多信息。

http://www.youtube.com/watch?v=2VYlTgaAHTs&list=PLlxmoA0rQ-LyCGSSD_nuPAmXDSR_FU0RR&index=31

http://www.youtube.com/watch?v=7XqHvJK9xn4&list=PLlxmoA0rQ-LyCGSSD_nuPAmXDSR_FU0RR&index=32

http://www.youtube.com/watch?v=4LYhbQXu19U&list=PLlxmoA0rQ-LyCGSSD_nuPAmXDSR_FU0RR&index=33

http://www.youtube.com/watch?v=W3NsvUX_Fwo&list=PLlxmoA0rQ-LyCGSSD_nuPAmXDSR_FU0RR&index=34

我希望这能帮到你!