這裏是我的xml代碼。用按鈕打開新活動
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn2"
android:layout_gravity="center_horizontal"
android:text="Make New Account"
android:onClick="new"
android:textColor="#E74C3C"
android:textStyle="bold"
android:paddingTop="20dp"/>
這裏是我的java代碼。
public Button btn2;
public void onClick(){
btn2=(Button)findViewById(R.id.btn2);
btn2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(MainActivity.this,submit.class);
startActivity(intent);
}
});
}
我的按鈕還沒有成型,將點擊,不幸的是應用程序已經停止按鈕後會出現即使是消息...的原因是什麼?
阿克沙伊Katariya感謝,但我,男不問敬酒。我的問題是通過按下新的活動沒有打開。 –
你應該用烤麪包信息取代你的意圖,現在試試我已經編輯過我的代碼試試看。 –