|
|
|
Android - ขอคำแนะนำเรื่อง กดปุ่มเพื่อบันทึกพร้อมกับเปลี่ยนหน้า |
|
|
|
|
|
|
|
Code (Android-Java) Alert Dialog ที่มีสองปุ่ม
AlertDialog.Builder alertDialog = new AlertDialog.Builder(AlertDialogActivity.this);
alertDialog.setTitle("หัวข้อ");
alertDialog.setMessage("ข้อความ");
alertDialog.setIcon(R.drawable.icon_name); //รูปไอค่อน
alertDialog.setPositiveButton("ตกลง",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int which) {
Toast.makeText(getApplicationContext(), "คุณกดตกลง", Toast.LENGTH_SHORT).show();
}
});
alertDialog.setNegativeButton("ยกเลิก",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(getApplicationContext(), "คุณกดยกเลิก", Toast.LENGTH_SHORT).show();
dialog.cancel();
}
});
alertDialog.show();
}
ส่วนการเปลี่ยนหน้าจะใช้คำสั่ง Intent
Code (Android-Java)
Intent i = new Intent(Class1.this, Class2.class);
startActivity(i);
|
ประวัติการแก้ไข 2014-02-23 23:12:46
|
|
|
|
Date :
2014-02-23 23:10:19 |
By :
tutordroid.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
save แล้ว Intent ครับ
|
|
|
|
|
Date :
2014-02-26 16:00:17 |
By :
tutordroid |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2014-02-26 20:53:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|