|
|
|
Android วิธีทำแจ้งเตือนเมื่อเราจะออกจากโปรแกรมที่เราสร้างขึ้นมา ให้ขึ้นข้อความแจ้งเตื่อนทำไงค้าบ แนะนำที |
|
|
|
|
|
|
|
น่าจะนอกเหนือการ Control ได้ครับ เพราะถ้า User กดปุ่ม Home หรือ Close โปรแกรมก็ทำอะไรไมไ่ด้ครับ
|
|
|
|
|
Date :
2017-01-25 10:53:38 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (Android-Java)
public void onBackPressed() {
AlertDialog.Builder dialog = new AlertDialog.Builder(this);
dialog.setTitle("ออกจากการใช้งาน");
dialog.setIcon(R.mipmap.ic_launcher);
dialog.setCancelable(true);
dialog.setMessage("คุณต้องการออกจากการทำรายการหรือไม่?");
dialog.setPositiveButton("ใช่", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// Intent intent = new Intent(Main_LineItemActivity.this, LoginActivity.class);
// startActivity(intent);
finish();
}
});
dialog.setNegativeButton("ไม่ใช่", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
dialog.show();
}
ปุ่ม back ใช่ไหมครับ
|
|
|
|
|
Date :
2017-01-26 21:41:54 |
By :
pranote661 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2017-01-28 13:38:07 |
By :
tot14883 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|