0

问题是,当我第二次单击按钮时,我的应用程序崩溃了,我不明白为什么。当我第二次点击按钮时,假设再次相同。

任何帮助表示赞赏。

public class main extends Activity {

    Boolean grabar = false;

    TextView texto;


    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        texto = (TextView) findViewById(R.id.texto);
        Button startbtn = (Button) findViewById(R.id.button);
        startbtn.setOnClickListener(new OnClickListener(){

            public void onClick(View v){

                    background.start();
            }
           });
    }

    Thread background = new Thread (new Runnable() {
        public void run() {

                    try {

                                         Thread.sleep(3000);
                        cambiarHandler.sendEmptyMessage(0);

                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
            }  

     });

    Handler cambiarHandler = new Handler() {
        public void handleMessage(android.os.Message msg) {             

           texto.setText("ok");  

        }
    };


}
4

3 回答 3

4

我看到的问题是线程被设计为运行一次。每次您希望运行它时,您都需要创建一个新的线程实例。

于 2011-08-11T21:36:34.493 回答
0

这很可能与Android 只允许UI 线程修改UI 的策略有关。

如果您想从单独的线程修改 UI,则应该使用 ASyncTask。

看这里:

从 Thread 更新 UI

于 2011-08-11T21:38:29.730 回答
0

我不知道抛出了哪个异常。我猜这是NPE抛出的。当您尝试将文本设置为TextView. 尝试TextViewhandleMessage()方法内实例化:

Handler cambiarHandler = new Handler() {
        public void handleMessage(android.os.Message msg) {             
           texto = (TextView) findViewById(R.id.texto);
           texto.setText("ok");  

        }
    };

在 onClick 方法中,每次单击按钮时都会有新的线程实例。

public void onClick(View v){
new Thread (new Runnable() {
        public void run() {

                    try {

                                         Thread.sleep(3000);
                        cambiarHandler.sendEmptyMessage(0);

                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
            }  

     }).start();
}
于 2011-08-11T21:40:57.473 回答