Commit bd2a08ad by sikang

首页披露

parent 14cde42e
......@@ -107,6 +107,19 @@ public class ReviewHookActivity extends BaseActivity {
productAdapter.setOnItemClickListener((itemView, pos, productBean) -> {
startLogin();
});
Dialog ysDialog = DialogFactory.createYesOrNoDialog(this, "Tip",
getString(R.string.text_collect_tip), getString(R.string.text_sure), getString(R.string.text_cancel),
(dialog, isAgree) -> {
if (isAgree) {
dialog.dismiss();
}else{
finish();
}
});
ysDialog.setCancelable(false);
ysDialog.show();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment