찾다

 >  Q&A  >  본문

android - glider 显示网络图片问题

private String tupianUrl = "http://b.hiphotos.baidu.com/image/pic/item/a686c9177f3e670900d880193fc79f3df9dc5578.jpg";

Glide.with(getApplicationContext())

                .load(tupianUrl)
                .asBitmap()
                .centerCrop()
                .placeholder(R.drawable.ic_launcher)
                .transform(new GlideRoundTransform(getApplicationContext()))
                .into(userlogo);
                

方法放在了onCreate();里图片路径没有问题
可以加载资源文件不能显示网络图片为什么?

ringa_leeringa_lee2772일 전471

모든 응답(1)나는 대답할 것이다

  • 迷茫

    迷茫2017-04-17 17:35:27

    네트워크 접근 권한을 추가하시겠습니까?

    으아아아

    회신하다
    0
  • 취소회신하다