试图制作一个TextView时钟,app在发布时冻结

时间:2013-12-13 22:30:23

标签: android time while-loop textview sleep

我正在尝试简单地拉动系统时间,并将其输入TextView,等待一秒钟,然后更新它。我使用了一个while循环,但是当应用程序启动时,它会冻结,没有显示。难道我做错了什么?或许这是一个更好的方法吗?我需要该方法能够拉整数,以便我可以匹配它们来设置,我希望添加一个报警功能。

MainActivity.java:

package com.example.polyphaser;

import java.text.SimpleDateFormat;
import java.util.Date;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        timeUpdate();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    public void timeUpdate() {
        boolean loop = true;

        while (loop = true) {
            String currentTimeString = new SimpleDateFormat("HH:mm:ss").format(new Date());

            // textView is the TextView view that should display it
            TextView sysTime = (TextView) findViewById(R.id.timeDisplay);
            sysTime.setText(currentTimeString);
            Thread.sleep(1000);
        }
    }
}

activity_main.xml中:

<LinearLayout 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"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/timeDisplay"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textSize="50sp" />

</LinearLayout>

</LinearLayout>

4 个答案:

答案 0 :(得分:1)

这显示了如何使用处理程序:

public class MainActivity extends Activity {

    private Handler handler = new Handler();
    private Runnable runnable;

    private TextView sysTime;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        sysTime = (TextView) findViewById(R.id.timeDisplay);

        runnable = new Runnable() {
            @Override
            public void run() {
                timeUpdate();
                handler.postDelayed(this, 1000);
            }
        };

    }

    @Override
    protected void onResume() {
        handler.postDelayed(runnable, 1000);
        super.onResume();
    }

    @Override
    protected void onPause() {
        handler.removeCallbacks(runnable);
        super.onPause();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    public void timeUpdate() {
        String currentTimeString = new SimpleDateFormat("HH:mm:ss").format(new Date());

        // textView is the TextView view that should display it
        sysTime.setText(currentTimeString);
    }
}

答案 1 :(得分:0)

更好的方法是使用处理程序。

new Handler().postDelayed(new Runnable() {
    @Override
    public void run() {
        sysTime.setText(...
    }
}, 1000);

我很确定while循环会锁定你的主线程,这就是冻结的原因。 查看开发页面上的处理程序。 http://developer.android.com/reference/android/os/Handler.html

答案 2 :(得分:0)

你需要将while循环移动到它自己的线程中,到目前为止你在UI线程上睡觉,这意味着所有UI绘图事物都被阻止了。当您需要在第二个计数线程中更新UI时,请调用Activity.runInUIThread(new Runnable(...){...})以发布更新。

答案 3 :(得分:0)

错误的大问题,请看代码中的这一行:

while (loop = true)

我猜测编译器优化了该语句(循环已经为真,loop = true不计算为布尔值,而且,循环不能被任何东西访问以将其值更改为false)所以你有一个while(false)导致循环体从不执行。

  • 您应该在另一次读取中进行更新,并使用runonuithread更新textview。