7

我对Android开发很陌生。尝试完成一些相当简单的事情——在计时器计时时更改一些显示的文本。这是可能相关的代码:

CountDownTimer currentTimer;
Resources res;
TextView timerText;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_exercise);
    res = getResources();

    timerText = (TextView) findViewById(R.id.timer_text);
}

@Override
protected void onStart() {
    super.onStart();

    //"Get ready" countdown
    currentTimer = new CountDownTimer(5000, 1000) {
        @Override
        public void onTick(long millisUntilFinished) {
            timerText.setText("" + (int)Math.ceil(millisUntilFinished / 1000.0));
        }

        @Override
        public void onFinish() {
            ...
        }
    };

    currentTimer.start();
}

这在模拟的 4.2.2 设备上工作正常,但在 4.1.2 设备(物理和模拟)上,更改后的 TextView 在倒计时继续时显示为:

更改了文本视图

如果你看不出来,那就是数字 5、4、3 叠加。因此,当我为 TextView 设置新字符串时,会显示新字符串但不会替换旧字符串。我的应用程序中使用的任何其他 TextView 的行为方式相同。

任何想法是什么问题以及如何解决它?

编辑:从 XML 布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".ExerciseActivity"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:keepScreenOn="true"
    android:orientation="vertical" >

    ...

    <TextView
        android:id="@+id/timer_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textIsSelectable="false"
        android:hint="@string/timer_default" />

    ...

</LinearLayout>

这就是所有可能相关的内容。

4

2 回答 2

0

公共类 MainActivity 扩展 Activity {

TextView timerText;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    timerText = (TextView) findViewById(R.id.timer_text);
}

@Override
protected void onStart() {
    super.onStart();

    CountDownTimer currentTimer = new CountDownTimer(5000, 1000) {
        @Override
        public void onTick(long millisUntilFinished) {
            timerText.setText("" + (int) Math.ceil(millisUntilFinished / 1000.0));
        }

        @Override
        public void onFinish() {
        }
    };

    currentTimer.start();
}

}

在 4.1.2 模拟器上测试并解决。

我的猜测是最终的参考变量导致了这个问题。

于 2013-11-05T05:51:47.460 回答
0

临时解决方案: 您应该为 LinearLayout 设置背景:android:background="@color/white"。我正在寻找原因。

于 2019-09-25T04:05:30.430 回答