我创建了一个警报对话框,当用户第一次点击我的应用程序时显示,我想知道的是如何将应用程序定向到我在 Play 商店中的应用程序并保存选择的内容,以便该框不会再次出现. 请帮忙,谢谢!
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();