android studio include gson in app
// Module level build.gradle
dependencies {
implementation 'com.google.code.gson:gson:2.8.5' // Old 2.8.2
}
android studio include gson in app
// Module level build.gradle
dependencies {
implementation 'com.google.code.gson:gson:2.8.5' // Old 2.8.2
}
alertdialog show in android
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage(getResources().getString(R.string.do_you_really_want_to_signout));
builder.setTitle(getResources().getString(R.string.sign_out));
builder.setCancelable(false);
builder.setNegativeButton(getResources().getString(R.string.cancel), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
builder.setPositiveButton(getResources().getString(R.string.sure), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(AccountActivity.this, R.string.log_out_success,
Toast.LENGTH_LONG).show();
}
});
AlertDialog alert = builder.create();
alert.show();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us