Commit 43e0dba2 by 刘鹏

feat : 信息收集卡 跳转地址判断优化

parent 7e6a3f5e
......@@ -10,7 +10,7 @@ ext {
"m-fm" : "0.0.30.04",
"m-user" : "0.0.61.94",
"m-home" : "0.0.22.84",
"m-im" : "0.0.20.99",
"m-im" : "0.0.21.01",
"m-dynamic" : "0.0.7.35",
"m-article" : "0.0.0.10",
......@@ -93,7 +93,7 @@ ext {
"m-fm" : "0.0.30.07",
"m-user" : "0.0.61.94",
"m-home" : "0.0.22.83",
"m-im" : "0.0.20.99",
"m-im" : "0.0.21.01",
"m-dynamic" : "0.0.7.35",
"m-article" : "0.0.0.8",
......
......@@ -111,7 +111,7 @@ public class QuestionAdapter extends BaseMultiItemQuickAdapter<QuestionMultiItem
.dontAnimate()
.into(image);
}
if (item.questionsBean.url != null) {
if (!TextUtils.isEmpty(item.questionsBean.url)) {
helper.setVisible(R.id.jump_url,true);
jumpUrlView.setOnClickListener(new View.OnClickListener() {
@Override
......@@ -122,7 +122,6 @@ public class QuestionAdapter extends BaseMultiItemQuickAdapter<QuestionMultiItem
});
} else {
helper.setVisible(R.id.jump_url,false);
}
break;
default:
......
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