Commit e5e787dc57b2b566c01b9909a8420f544106ce28
1 parent
7083c3e3a1
Exists in
master
文案修改
Showing
3 changed files
with
22 additions
and
4 deletions
Show diff stats
.idea/deploymentTargetDropDown.xml
... | ... | @@ -3,7 +3,20 @@ |
3 | 3 | <component name="deploymentTargetDropDown"> |
4 | 4 | <value> |
5 | 5 | <entry key="app"> |
6 | - <State /> | |
6 | + <State> | |
7 | + <runningDeviceTargetSelectedWithDropDown> | |
8 | + <Target> | |
9 | + <type value="RUNNING_DEVICE_TARGET" /> | |
10 | + <deviceKey> | |
11 | + <Key> | |
12 | + <type value="SERIAL_NUMBER" /> | |
13 | + <value value="951f9ace" /> | |
14 | + </Key> | |
15 | + </deviceKey> | |
16 | + </Target> | |
17 | + </runningDeviceTargetSelectedWithDropDown> | |
18 | + <timeTargetWasSelectedWithDropDown value="2025-03-20T09:48:34.278363400Z" /> | |
19 | + </State> | |
7 | 20 | </entry> |
8 | 21 | </value> |
9 | 22 | </component> | ... | ... |
app/src/main/java/com/hjx/parent/HuyouDetailActivity.java
... | ... | @@ -199,14 +199,19 @@ public class HuyouDetailActivity extends BaseRxActivity<ActivityHuyouDetailBindi |
199 | 199 | binding.tvRating.setText(""); |
200 | 200 | } else { |
201 | 201 | String rateComment; |
202 | + String encComment; | |
202 | 203 | if (rate >= 90) { |
203 | 204 | rateComment = "知识点掌握得比较优秀,多练习多巩固掌握一般的知识点会有很大帮助。"; |
205 | + encComment = "在未来的学习中,请保持这份优秀,继续挑战更难的题目,勇攀高峰"; | |
204 | 206 | } else if (rate >= 80) { |
205 | 207 | rateComment = "知识点掌握程度有进步,还要再继续学习,多练习,不断巩固。"; |
208 | + encComment = "在未来的学习中,请保持这份优秀,继续挑战更难的题目,勇攀高峰"; | |
206 | 209 | } else if (rate >= 60) { |
207 | 210 | rateComment = "薄弱知识点还有进步空间,再多做一些类似题目来巩固知识点,继续努力。"; |
211 | + encComment = "在未来的学习中,请不要灰心,继续努力"; | |
208 | 212 | } else { |
209 | 213 | rateComment = "你的薄弱知识点还需要再深入了解,有不清楚的地方及时问老师,继续加油。"; |
214 | + encComment = "在未来的学习中,请不要灰心,继续努力"; | |
210 | 215 | } |
211 | 216 | |
212 | 217 | String correctNumHt = fromColor(String.valueOf(data.correct), "#3BC3B6"); |
... | ... | @@ -224,9 +229,9 @@ public class HuyouDetailActivity extends BaseRxActivity<ActivityHuyouDetailBindi |
224 | 229 | String rateStr = new DecimalFormat("0%").format(rate / 100f); |
225 | 230 | String temp; |
226 | 231 | if (type == 0) { |
227 | - temp = indent + "在本周作业中,你的综合正确率是 %s," + rateComment + pointComment + "在未来的学习中,请保持这份优秀,继续挑战更难的题目,勇攀高峰。"; | |
232 | + temp = indent + "在本周作业中,你的综合正确率是 %s," + pointComment + rateComment + encComment; | |
228 | 233 | } else { |
229 | - temp = indent + "你的综合正确率是 %s," + rateComment; | |
234 | + temp = indent + "在本阶段作业中,你的综合正确率是 %s," + pointComment + rateComment + encComment; | |
230 | 235 | } |
231 | 236 | temp = String.format(temp, fromColor(rateStr, "#3BC3B6")); |
232 | 237 | binding.tvRating.setText(Html.fromHtml(temp, Html.FROM_HTML_MODE_COMPACT)); | ... | ... |
app/src/main/res/layout/activity_homework_select.xml