public class Menu extends Activity {
/** Called when the activity is first created. */
public void onCreate(Bundle icicle) {
//myIntent.setClassName("hello.World", "hello.World.mybuttonclick");
// myIntent.putExtra("com.android.samples.SpecialValue", "Hello, Joe!"); // key/value pair, where key needs current package prefix.
//startActivity(myIntent);
//Button myButton = (Button) findViewById(R.id.my_button);
super.onCreate(icicle);
setContentView(R.layout.main);
}
public void updateLayout(){
Intent myIntent = new Intent(Menu.this, mybuttonclick.class);
startActivity(myIntent);
// TextView sayHello = (TextView) findViewById(R.id.Hello);
}
}
嗨,我是一個新的Android的Java的學生,我們要開發一個簡單的Hello World應用程序..我找到了一些困難,讓我的onClick()活動工作,使用android:在xml中的Onclick ..我想要做的是改變內容視圖做顯示一個簡單的不同的佈局,並說你好..我使用setContentLayout來做到這一點,每次我點擊說按鈕tho android應用程序崩潰了..我做錯了什麼?的Android(學生CW)需要方向的
問候,
斯特凡