I have created an alertdialog box that shows up when the user first clicks on my app, what I want to know is how to direct the app to my app in the Play Store and save what was selected so that the box does not show up again. Please help, thanks!
AlertDialog.Builder b= new AlertDialog.Builder(this)
.setTitle("Review and Rate Converjz!")
.setMessage("Click on OK to review and rate Converjz, your feedback" +
"and ratings are greatly apreciated! We need your help to improve our app in order to provide you with a better" +
" experience. Thanks!")
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
dialog.dismiss();
}
}
)
.setNegativeButton("CANCEL",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
dialog.dismiss();
dialog.cancel();
}
}
);
b.show();