dxh 6 years ago
parent
commit
6754135478

+ 1 - 1
app/src/main/java/com/electric/chargingpile/activity/PersonalPageActivity.java

149
        data_info.setText(qadata.userVo.topicNums + "");
149
        data_info.setText(qadata.userVo.topicNums + "");
150
        if (!"".equals(qadata.userVo.headImgUrl)) {
150
        if (!"".equals(qadata.userVo.headImgUrl)) {
151
            Picasso.with(this)
151
            Picasso.with(this)
152
                    .load(qadata.userVo.headImgUrl)
152
                    .load("http://cdz.evcharge.cc/zhannew/uploadfile/"+qadata.userVo.headImgUrl)
153
                    .into(new Target() {
153
                    .into(new Target() {
154
                        @Override
154
                        @Override
155
                        public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom loadedFrom) {
155
                        public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom loadedFrom) {

+ 1 - 1
app/src/main/java/com/electric/chargingpile/activity/TopicDetailsActivity.java

284
            }else {
284
            }else {
285
                topic_content.setText(contentAll);
285
                topic_content.setText(contentAll);
286
            }
286
            }
287
            ImageDisplayUtils.dispalyImg(this, list.get(0).headImgUrl, user_avater);
287
            ImageDisplayUtils.dispalyImg(this, "http://cdz.evcharge.cc/zhannew/uploadfile/"+list.get(0).headImgUrl, user_avater);
288
        }
288
        }
289
    }
289
    }
290
290