如何加载和显示一些无法加载和显示图像的图像URL

时间:2019-02-19 00:38:29

标签: java android picasso

我想在我的Android项目中显示URL中的某些图像,我尝试使用Picasso来显示它们,某些图像可以正确显示,但是有些图像却不能显示该图像,即使我尝试从浏览器中显示它,也正在显示我的图片

Picasso.with(context)
            .load("http://202.169.35.50/home9.jpg")
            .fit()
            .placeholder(R.drawable.logostar_hue)
            .into(imageView);
    imageView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
              Intent intent = new Intent(Intent.ACTION_VIEW, 
              Uri.parse(details));
              context.startActivity(intent);
        }
    });

0 个答案:

没有答案