Commit 15afa0c19617bf74f900740526474032fb0f6b88

Authored by shixianjie
1 parent 7ba87854ba
Exists in master

文案修改

app/src/main/java/com/hjx/parent/HuyouDetailActivity.java
... ... @@ -168,7 +168,7 @@ public class HuyouDetailActivity extends BaseRxActivity<ActivityHuyouDetailBindi
168 168 comment = "你的薄弱知识点还需要再深入了解,有不清楚的地方及时问老师,继续加油。";
169 169 }
170 170 String percent = new DecimalFormat("0%").format(after / 100);
171   - String temp = indent + "通过学习,你的薄弱知识点掌握程度为 %s," + comment;
  171 + String temp = indent + "通过学习,你的知识点掌握程度为 %s," + comment;
172 172 temp = String.format(temp, fromColor(percent, "#F24E38"));
173 173 binding.tvWeakRate.setText(Html.fromHtml(temp, Html.FROM_HTML_MODE_COMPACT));
174 174 }
... ... @@ -236,11 +236,11 @@ public class HuyouDetailActivity extends BaseRxActivity<ActivityHuyouDetailBindi
236 236 .append(errNumHt).append(" 个");
237 237 if (exNo > 0) {
238 238 String ht = fromColor(String.valueOf(exNo), "#3BC3B6");
239   - pointComment.append(",").append(ht).append(" 个知识点掌握的非常棒");
  239 + pointComment.append(",").append(ht).append(" 个知识点非常棒");
240 240 }
241 241 if (weakNo > 0) {
242 242 String ht = fromColor(String.valueOf(weakNo), "#3BC3B6");
243   - pointComment.append(",").append(ht).append(" 个知识点掌握的还需努力,这部分还要再加强学习");
  243 + pointComment.append(",").append(ht).append(" 个知识点还需努力,这部分还要再加强学习");
244 244 }
245 245 pointComment.append("。");
246 246 String rateStr = new DecimalFormat("0%").format(rate / 100f);
... ...