0

最新の Android Studio でシンプルな Android アプリ ( https://www.linux.com/learn/docs/683628-android-programming-for-beginners-part-1 ) を作成しています。コード:

public class test_act extends Activity {

    private static final int MILLIS_PER_SECOND = 1000;
    private static final int SECONDS_TO_COUNTDOWN = 30;
    private android.widget.TextView     countdownDisplay;
    private android.os.CountDownTimer timer;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.full_act);

        countdownDisplay = (android.widget.TextView) findViewById(R.id.time_display_box);
        android.widget.Button startButton = (android.widget.Button) findViewById(R.id.startbutton);
        startButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View view) {
                try {
                    showTimer(SECONDS_TO_COUNTDOWN * MILLIS_PER_SECOND);
                } catch (NumberFormatException e) {
                    // method ignores invalid (non-integer) input and waits
                    // for something it can use
                }
            }
        });
    }
    private void showTimer(int countdownMillis) {
        if(timer != null) { timer.cancel(); }
        timer = new android.os.CountDownTimer(countdownMillis, MILLIS_PER_SECOND) {
            @Override
            public void onTick(long millisUntilFinished) {
                countdownDisplay.setText("counting down: " +
                        millisUntilFinished / MILLIS_PER_SECOND);
            }
            @Override
            public void onFinish() {
                countdownDisplay.setText("KABOOM!");
            }
        }.start();
    }
}

私のXML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >
    <TextView
            android:id="@+id/time_display_box"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="60dp"
            android:text="@string/_00_30"
            android:textAppearance="?android:attr/textAppearanceLarge"/>
    <Button
            android:id="@+id/startbutton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/time_display_box"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="41dp"
            android:text="@string/start" />

</RelativeLayout>

エミュレータでは、うまく機能しています。しかし、CyanogenMod10.1(Android 4.2.2)アプリを搭載した私のGalaxy S2では、TextViewの更新が間違っています。スクリーンショット: ここに画像の説明を入力

この問題を解決するにはどうすればよいですか?

upd: 画面の回転後、TextView が 1 回更新されます。

4

2 に答える 2

0

レイアウトが更新されるたびに、レイアウトを無効にしてみてください。テキストが更新される頻度で、電話がレイアウトを再描画するのに十分な時間がないと推測しています。これは、レイアウトが強制的に更新されるため、携帯電話を回転させたときに機能する理由も説明します.

countdownDisplay.invalidate();

それでもうまくいかない場合はお知らせください。

于 2013-07-17T14:23:21.177 に答える