Skip to content

Instantly share code, notes, and snippets.

@edward1986
Created December 4, 2020 08:21
Show Gist options
  • Save edward1986/983915b00778029203d44927b5b6fa28 to your computer and use it in GitHub Desktop.
Save edward1986/983915b00778029203d44927b5b6fa28 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button android:id="@+id/buttonDelete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Delete"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:onClick="confirmDelete"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
package com.example.alertdialog;
import androidx.appcompat.app.AppCompatActivity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void confirmDelete(View view) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Delete")
.setMessage("Are you sure you?")
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
Toast.makeText(MainActivity.this, "OK Pressed",
Toast.LENGTH_SHORT).show();
}
})
.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
Toast.makeText(MainActivity.this, "Cancel Pressed",
Toast.LENGTH_SHORT).show();
}
});
builder.create().show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment