如何在url中显示imageView中的图像

时间:2018-01-01 14:23:56

标签: java android android-studio picasso

我有一个包含一些图像的gridview,当我点击其中一个时,它会出现一些文本而不是图像本身,因为我希望图像从网址加载。我使用毕加索来加载图像,因为我发现这是最简单的方法,请告诉我我做错了什么

smiles_items_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="wrap_content">

<ImageView android:id="@+id/smile_image_view"
    android:layout_width="45dp"
    android:layout_height="45dp"
    android:layout_gravity="center"/>
</LinearLayout>

BottomSheetDialog_Smiles.java

@Override
    public View getView(final int position, final View convertView,
                        ViewGroup parent) {

        final Holder holder = new Holder();
        LayoutInflater inflater = (LayoutInflater)

getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        grid = inflater.inflate(R.layout.smiles_items_layout, null);

        holder.img = (ImageView) grid.findViewById(R.id.smile_image_view);
        holder.img.setImageResource(mThumbIds[position]);

        gridView2.setOnItemClickListener(new 
AdapterView.OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> adapterView, View view, 
                   int i, long l) {

               JSONDictionary imageChat = new JSONDictionary();
               Picasso.with(context)
                        .load("https://wallpapercave.com/wp/JUwBXRw.jpg")
                        .resize(50,50).into(holder.img);
                imageChat.put("message", holder.img);
                Communicator.getInstance().emit("new chat message", 
                imageChat);

            }
        });

        return grid;

    }
}

这是显示

的结果

This is the result that displays

2 个答案:

答案 0 :(得分:1)

我有一个包含一些图像的网格视图,当我点击其中一个图像时,它会出现一些文本而不是图像本身,因为我希望图像从网址加载。

=&GT;你看到对象地址背后的原因是因为你在聊天消息中传递了ImageView。

ggplot(df, aes(x = x)) + 
  geom_histogram(aes(y=..density..),fill="Blue")

相反,您应该只传递一个图像地址,如:

imageChat.put("message", holder.img);

在接收方,编写代码以使用相同的代码加载图像:

imageChat.put("image_to_load", "https://wallpapercave.com/wp/JUwBXRw.jpg");

因为Picasso可以帮助您从给定的URL异步加载图像,所以您应该在实际需要时进行调用。在您的情况下,图像应加载到接收方。

答案 1 :(得分:-1)

在我的应用程序中,我做了类似的事情:

Glide.with(getActivity()).load(url)
     .diskCacheStrategy(DiskCacheStrategy.SOURCE)
     .centerCrop().into(imageview);