Hy I want that my prog wait 1000 ms and change the title of the button... but the prog appears with the changed name
package com.catchthebutton;
import android.app.Activity;
import android.os.Bundle;
import android.os.SystemClock;
import android.widget.Button;
public class test extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Button bt = new Button(this);
setContentView(bt);
bt.setText("Wait");
SystemClock.sleep(10000);
bt.setText("OK");
}
}