|
|
@@ -173,8 +173,8 @@ public class SignUpAgreeFragment extends FragmentBase<SignUpAgreePresenter> impl
|
|
|
title = title.replace(ResourceUtil.getString(R.string.agree_option), "");
|
|
|
title = title.trim();
|
|
|
checkBox.setText(StringUtil.fromHtml(
|
|
|
- new StringBuilder().append("<b>").append(bean.isMandatory() ? ResourceUtil.getString(R.string.agree_required) : ResourceUtil.getString(R.string.agree_option))
|
|
|
- .append("</b> ").append("<font color='#999999'>").append(title).append("</font>").toString()));
|
|
|
+ new StringBuilder().append(bean.isMandatory() ? ResourceUtil.getString(R.string.agree_required) : ResourceUtil.getString(R.string.agree_option))
|
|
|
+ .append("<font color='#999999'>").append(title).append("</font>").toString()));
|
|
|
checkBox.setChecked(bean.isChecked());
|
|
|
checkBox.setOnCheckedChangeListener((buttonView, isChecked) -> {
|
|
|
bean.setChecked(isChecked);
|