dumingwei
dumingwei
SkinInflaterFactory add the ability to handle android.R.attr.src in style.
``` final View contentView = inflater.inflate(R.layout.fragment_preview, container, false); final ImageView imageView = contentView.findViewById(R.id.image); final PhotoViewAttacher mAttacher = new PhotoViewAttacher(imageView); // TODO: 2018/2/8 0008 不明白为什么要这样写 Glide.with(this) .asBitmap() .load(new File(strUrl)) .into(new SimpleTarget(480,...
在await的时候,如果await了一段时间以后,主线程的任务还有没初始化完成的,这时候会有问题吗?