0

我正在尝试在我的应用中输出 google 个人资料图片。但是,我在这里有一个错误,不知道它在哪里。不幸的是,该应用程序总是直接关闭。有谁知道另一种方法或认识到我的错误?

    String personPhotoUrl = acct.getPhotoUrl().toString();
    Glide.with(this)
            .load(personPhotoUrl)
            .transition(withCrossFade())
            .apply(new RequestOptions().override(100, 100)
                    .placeholder(R.drawable.ic_launcher_background)
                    .error(R.drawable.ic_launcher_background).centerCrop()
            )
            .into(imgProfilePic);
4

0 回答 0