截取分割图片

 //截取图片集
        String str = "";
        int length = mData.get(i).getImages().length();
        for (int j = 0; j < length; j++) {
            if (mData.get(i).getImages().substring(j, j + 1).equals("|")) {
                str = mData.get(i).getImages().substring(j + 1, length).trim();
            }
        }
        Glide.with(mContext).load(str).into(mHolder.imageView);

猜你喜欢

转载自blog.csdn.net/qq_43143422/article/details/85011866
今日推荐