Commit 64f06043 by 霍志良

feat:dynamic升级

parent 6e7b563b
......@@ -11,7 +11,7 @@ ext {
"m-user" : "0.0.61.39",
"m-home" : "0.0.22.69",
"m-im" : "0.0.19.70",
"m-dynamic" : "0.0.7.26",
"m-dynamic" : "0.0.7.28",
"m-article" : "0.0.0.10",
"m-muse" : "0.0.28.24",
......@@ -94,7 +94,7 @@ ext {
"m-user" : "0.0.61.39",
"m-home" : "0.0.22.69",
"m-im" : "0.0.19.70",
"m-dynamic" : "0.0.7.26",
"m-dynamic" : "0.0.7.28",
"m-article" : "0.0.0.8",
"m-muse" : "0.0.28.24",
......
......@@ -392,7 +392,7 @@ public class TrendsHomeFragment extends BaseFragment implements ITrendHomeView,
for (int i = 0; i < 3 && i < topicListDatas.list.size(); i++) {
switch (i) {
case 0:
GlideApp.with(getActivity())
GlideApp.with(this)
.load(topicListDatas.list.get(i).getImg_bg_url())
.centerCrop()
.transform(new RoundedCornersTransformation(20, 0, RoundedCornersTransformation.CornerType.LEFT))
......@@ -403,7 +403,7 @@ public class TrendsHomeFragment extends BaseFragment implements ITrendHomeView,
});
break;
case 1:
GlideApp.with(getActivity())
GlideApp.with(this)
.load(topicListDatas.list.get(i).getImg_bg_url())
.centerCrop()
.transform(new RoundedCornersTransformation(20, 0, RoundedCornersTransformation.CornerType.TOP_RIGHT))
......@@ -414,7 +414,7 @@ public class TrendsHomeFragment extends BaseFragment implements ITrendHomeView,
});
break;
case 2:
GlideApp.with(getActivity())
GlideApp.with(this)
.load(topicListDatas.list.get(i).getImg_bg_url())
.centerCrop()
.transform(new RoundedCornersTransformation(20, 0, RoundedCornersTransformation.CornerType.BOTTOM_RIGHT))
......
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