Commit 0f4556a518d2dd445d6fe9d6192571747bb78755
1 parent
d1a9fe26
Exists in
yxb_dev
and in
1 other branch
no message
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/src/main/java/com/shunzhi/parent/presenter/apply/ApplyReplaceCardPresenter.java
... | ... | @@ -34,7 +34,7 @@ public class ApplyReplaceCardPresenter extends ApplyReplaceCardContract.ApplyRep |
34 | 34 | @SuppressLint("LongLogTag") |
35 | 35 | @Override |
36 | 36 | public void accept(JsonObject jsonObject) throws Exception { |
37 | - ToastUtils.showToast("data:" + jsonObject.toString()); | |
37 | +// ToastUtils.showToast("data:" + jsonObject.toString()); | |
38 | 38 | String isShowTipsDialog = jsonObject.get("data").getAsString(); |
39 | 39 | mIView.showTipsDialog(isShowTipsDialog); |
40 | 40 | } | ... | ... |
app/src/main/java/com/shunzhi/parent/ui/activity/BankActivity.java
... | ... | @@ -47,7 +47,7 @@ public class BankActivity extends BaseCompatActivity { |
47 | 47 | if (!TextUtils.isEmpty(info)) { |
48 | 48 | if (info.equals("如果使用该应用,请前往激活孩子校园卡")) { |
49 | 49 | Spannable span = new SpannableString(info); |
50 | - span.setSpan(new ForegroundColorSpan(getResources().getColor(R.color.xueqing_blue)), 11, 23, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); | |
50 | + span.setSpan(new ForegroundColorSpan(getResources().getColor(R.color.xueqing_blue)), 11, 13, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); | |
51 | 51 | tv_info.setText(span); |
52 | 52 | } else { |
53 | 53 | tv_info.setText(info); | ... | ... |