Commit 7ffbaef34f2105c6d7b658665a4b22f110d2041a
1 parent
561e50fc
Exists in
yxb_dev
and in
2 other branches
no message
Showing
2 changed files
with
1 additions
and
2 deletions
Show diff stats
app/src/main/java/com/shunzhi/parent/ui/fragment/ConsultFragment.java
... | ... | @@ -97,7 +97,6 @@ public class ConsultFragment extends BaseMVPCompatFragment<ConsultContract.Consu |
97 | 97 | |
98 | 98 | private void initRecycler() { |
99 | 99 | recycler_context.setLayoutManager(new LinearLayoutManager(getActivity())); |
100 | - | |
101 | 100 | recycler_context.setLoadingListener(new XRecyclerView.LoadingListener() { |
102 | 101 | @Override |
103 | 102 | public void onRefresh() { | ... | ... |
app/src/main/java/com/shunzhi/parent/ui/fragment/consult/ConsultOneLevelFragment.java
... | ... | @@ -214,7 +214,7 @@ public class ConsultOneLevelFragment extends BaseMVPCompatFragment<ConsultOneCon |
214 | 214 | |
215 | 215 | @Override |
216 | 216 | public void onBindViewHolder(final GuangGaoBean object, int position) { |
217 | - Glide.with(getActivity()).load(AppConfig.BASE_URL_IMG + object.fileSrc).error(R.drawable.ic_launcher_foreground).into(iv_grally); | |
217 | + Glide.with(getActivity()).load(AppConfig.BASE_URL_FILE + object.fileSrc).error(R.drawable.ic_launcher_foreground).into(iv_grally); | |
218 | 218 | |
219 | 219 | tv_grally_title.setText(object.describe + ""); |
220 | 220 | iv_grally.setOnClickListener(new View.OnClickListener() { | ... | ... |