Commit 2239c85c by 霍志良

fix:多选BUG修复

parent 8a59e319
...@@ -10,7 +10,7 @@ ext { ...@@ -10,7 +10,7 @@ ext {
"m-fm" : "0.0.30.03", "m-fm" : "0.0.30.03",
"m-user" : "0.0.61.37", "m-user" : "0.0.61.37",
"m-home" : "0.0.22.68", "m-home" : "0.0.22.68",
"m-im" : "0.0.19.52", "m-im" : "0.0.19.53",
"m-dynamic" : "0.0.7.25", "m-dynamic" : "0.0.7.25",
"m-article" : "0.0.0.10", "m-article" : "0.0.0.10",
...@@ -93,7 +93,7 @@ ext { ...@@ -93,7 +93,7 @@ ext {
"m-fm" : "0.0.30.01", "m-fm" : "0.0.30.01",
"m-user" : "0.0.61.37", "m-user" : "0.0.61.37",
"m-home" : "0.0.22.68", "m-home" : "0.0.22.68",
"m-im" : "0.0.19.50", "m-im" : "0.0.19.53",
"m-dynamic" : "0.0.7.25", "m-dynamic" : "0.0.7.25",
"m-article" : "0.0.0.8", "m-article" : "0.0.0.8",
......
...@@ -172,7 +172,7 @@ public class MsgViewHolderLingxiWhichQuestion extends MsgViewHolderBase implemen ...@@ -172,7 +172,7 @@ public class MsgViewHolderLingxiWhichQuestion extends MsgViewHolderBase implemen
multipleAnswers = (ArrayList<String>) multiple; multipleAnswers = (ArrayList<String>) multiple;
for (int i = 0; i < questionList.size(); i++) { for (int i = 0; i < questionList.size(); i++) {
for (int j = 0; j < multipleAnswers.size(); j++) { for (int j = 0; j < multipleAnswers.size(); j++) {
if (questionList.get(i).getName().contains(multipleAnswers.get(j))) { if (questionList.get(i).getName().equals(multipleAnswers.get(j))) {
questionList.get(i).setSelected(true); questionList.get(i).setSelected(true);
} }
} }
......
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