照片未出现在RecyclerView中

时间:2016-08-26 20:49:24

标签: android json gson retrofit2 flickr

我正在尝试在回收站视图中添加带有标题的flickr图像,遇到我的问题是我想将图像及其标题传递给循环中的FlickrPhoto类(请查看上面的内容,看看我是什么如果你注意到这行photos.add(新的FlickrPhoto(标题,uri));你会看到它在循环函数中的循环中处于后台任务中,所以我认识到该行没有被执行..但是当我在enqueue函数之后尝试它对我来说它只适用于一个图像因为,我在循环之外。我尝试了很多解决方案,但都失败了

这是我的PhotoListActivity

package com.example.karim.bluecrunch;

/**
 * Created by karim on 8/26/16.
 */
public class FlickrPhoto {
    String title , image ;
    public  FlickrPhoto(String title , String image )
    {
        this.image = image;
        this.title = title;
    }
}

这是我的PhotosRecyclerViewAdapter

package com.example.karim.bluecrunch;
public class PhotosRecyclerViewAdapter extends RecyclerView.Adapter<PhotosRecyclerViewAdapter.PhotoViewHolder> {

    List<FlickrPhoto> photos = Collections.emptyList();
    Context context;
    LayoutInflater inflater;

    public PhotosRecyclerViewAdapter(Context context , List<FlickrPhoto> photos)
    {
        this.context = context;
        this.photos = photos;
        inflater = LayoutInflater.from(context);
    }

    @Override
    public PhotoViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View row = inflater.inflate(R.layout.single_row,parent,false);
        return new PhotoViewHolder(row);
    }

    @Override
    public void onBindViewHolder(PhotoViewHolder holder, int position) {
        FlickrPhoto photo = photos.get(position);
        holder.textView.setText(photo.title);
        Uri uri = Uri.parse(photo.image);
        Glide.with(context).load(uri).placeholder(R.drawable.image_placeholder).crossFade().into(holder.imageView);

    }

    @Override
    public int getItemCount() {
        return photos.size();
    }

    public class PhotoViewHolder extends RecyclerView.ViewHolder {
        private TextView textView;
        private ImageView imageView;

        public PhotoViewHolder(View itemView) {
            super(itemView);
            textView = (TextView) itemView.findViewById(R.id.photoTitle);
            imageView = (ImageView) itemView.findViewById(R.id.flickrPhoto);
        }



    }
}

这是我的PhotosListActivity

package com.example.karim.bluecrunch;

public class PhotosListActivity extends AppCompatActivity {
    List<FlickrPhoto> photos ;
    ArrayList<String> photosTitles;
    ArrayList<String> photoURLS;
    String title;
    String uri;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_photos_list);

        RecyclerView recyclerView = (RecyclerView) findViewById(R.id.photo_recycler_view);
        recyclerView.setLayoutManager(new GridLayoutManager(getApplicationContext(),2));
        PhotosRecyclerViewAdapter adapter = new PhotosRecyclerViewAdapter(this,getPhotos());
        recyclerView.setAdapter(adapter);
    }

    public List<FlickrPhoto> getPhotos()
    {

        photos = new ArrayList<>();

        final String API_KEY = "fdac2e9676991ac53b34651adab52518";
        final String METHOD = "flickr.photos.search";
        final String AUTH_TOKEN = "72157671978046542-6e266595ffed01f8";
        final String API_SIG = "58e08d365779a8f2e946a2b5320199e2";
        final String FORMAT = "json";
        final int CALL_BACK = 1;

        HandleRetrofit handleRetrofit = HandleRetrofit.retrofit.create(HandleRetrofit.class);
        Call<Photos> call = handleRetrofit.Photos(METHOD,API_KEY,FORMAT,CALL_BACK,AUTH_TOKEN,API_SIG);
        call.enqueue(new Callback<Photos>() {
            @Override
            public void onResponse(Call<Photos> call, Response<Photos> response) {
                Log.d("MainActivity", "Status Code = " + response.code());
                PhotosRetrofit photosRetrofit = response.body().photos;
                for (int i = 0; i < photosRetrofit.getPhoto().size(); i++) {
                    uri="https://farm"+photosRetrofit.getPhoto().get(i).getFarm()+".staticflickr.com/"+
                            photosRetrofit.getPhoto().get(i).getServer()+"/"+
                            photosRetrofit.getPhoto().get(i).getId()+"_" +
                            photosRetrofit.getPhoto().get(i).getSecret()+".jpg";

                    title= photosRetrofit.getPhoto().get(i).getTitle();

                    photos.add(new FlickrPhoto(title,uri));


                    Log.w(">>>>>>>>>>>","https://farm"+photosRetrofit.getPhoto().get(i).getFarm()+".staticflickr.com/"+
                            photosRetrofit.getPhoto().get(i).getServer()+"/"+
                            photosRetrofit.getPhoto().get(i).getId()+"_" +
                            photosRetrofit.getPhoto().get(i).getSecret()+".jpg");
                }

            }

            @Override
            public void onFailure(Call<Photos> call, Throwable t) {
                Toast.makeText(PhotosListActivity.this,"Error :"+t.getMessage(),Toast.LENGTH_LONG).show();
                Log.w("---___--- Error ",t.getMessage());
            }
        });
    /*    Log.w("Hello",uri.toString());
        Log.w("Hello",title.toString());*/
        photos.add(new FlickrPhoto("karim","https://farm9.staticflickr.com/8450/29141814932_a62977990d.jpg"));
        return photos;
    }
}

一切正常,但我的活动中这一行的主要问题

photos.add(new FlickrPhoto(title,uri));

我认为这不能在后台任务中完成,因为这行

photos.add(new FlickrPhoto("karim","https://farm9.staticflickr.com/8450/29141814932_a62977990d.jpg"));

在排队功能之后工作正常,但我不知道怎么做这样的技巧来解决这个问题。

修改

请注意循环

for (int i = 0; i < photosRetrofit.getPhoto().size(); i++) 
{
uri="https://farm"... ;
title= ..;
 **photos.add(new FlickrPhoto(title,uri));**
 Log.w(">>>>>>>>>>>","https://farm"+photosRetrofit.getPhoto()‌​.get(i).getFarm()+".‌​staticflickr.com/"+p‌​hotosRetrofit.getPho‌​to().get(i).getServe‌​r()+"/"+photosRetrof‌​it.getPhoto().get(i)‌​.getId()+"_" +photosRetrofit.getPhoto().get(i).getSecret()+".jpg");
 }

没有被跳过,因为如果你尝试在循环中记录title或uri,它将在Logcat中成功显示。主要问题是这行代码photos.add(new FlickrPhoto(title,uri));将数据“title和uri”传递给FlickrPhoto类的构造函数,此操作在enqueue中 - &gt; onResponse(后台任务),我不知道它为什么不起作用

将数据(图像和标题)加载到回收站视图中除外,但实际上没有任何反应

我尝试了几件事

首先,在PhotosListActivity类中返回photos()arrayList之前,我试图将固定数据传递给FlickrPhoto类的构造函数并将其工作,并将图像显示在Recycler视图中

其次,我尝试将一个默认构造函数和setter,getter作为标题和图像添加到FlickrPhoto类,并在PhotosListActivity类的OnCreate函数上初始化它,然后在enqueue上使用我的setter和getter,它工作并加载所有数据成功,但当我试图再次运行一切都消失了! :(,我不知道为什么

做主持人和吸气者是这样的 FlickrPhoto.java类

package com.example.karim.bluecrunch;

/**
 * Created by karim on 8/26/16.
 */
public class FlickrPhoto {
    String title , image ;
    public FlickrPhoto(){}
    public  FlickrPhoto(String title , String image )
    {
        this.image = image;
        this.title = title;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getImage() {
        return image;
    }

    public void setImage(String image) {
        this.image = image;
    }

}

和PostListActivity类

package com.example.karim.bluecrunch;

import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.widget.TextView;
import android.widget.Toast;

import java.net.URI;
import java.util.ArrayList;
import java.util.List;

import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
import retrofit2.http.Url;

public class PhotosListActivity extends AppCompatActivity {
    List<FlickrPhoto> photos ;
    ArrayList<String> photosTitles;
    ArrayList<String> photoURLS;
    FlickrPhoto flickrPhoto ;
    String title;
    String uri;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_photos_list);

        RecyclerView recyclerView = (RecyclerView) findViewById(R.id.photo_recycler_view);
        recyclerView.setLayoutManager(new GridLayoutManager(this,2));
        PhotosRecyclerViewAdapter adapter = new PhotosRecyclerViewAdapter(this,getPhotos());
        recyclerView.setAdapter(adapter);

        flickrPhoto = new FlickrPhoto();



    }

    public List<FlickrPhoto> getPhotos()
    {

        photos = new ArrayList<>();

        final String API_KEY = "fdac2e9676991ac53b34651adab52518";
        final String METHOD = "flickr.photos.search";
        final String AUTH_TOKEN = "72157671978046542-6e266595ffed01f8";
        final String API_SIG = "58e08d365779a8f2e946a2b5320199e2";
        final String FORMAT = "json";
        final int CALL_BACK = 1;

        HandleRetrofit handleRetrofit = HandleRetrofit.retrofit.create(HandleRetrofit.class);
        Call<Photos> call = handleRetrofit.Photos(METHOD,API_KEY,FORMAT,CALL_BACK,AUTH_TOKEN,API_SIG);
        call.enqueue(new Callback<Photos>() {
            @Override
            public void onResponse(Call<Photos> call, Response<Photos> response) {
                Log.d("MainActivity", "Status Code = " + response.code());
                PhotosRetrofit photosRetrofit = response.body().photos;
                //photosRetrofit.getPhoto().size()
                for (int i = 0; i < photosRetrofit.getPhoto().size(); i++) {
                    uri="https://farm"+photosRetrofit.getPhoto().get(i).getFarm()+".staticflickr.com/"+
                            photosRetrofit.getPhoto().get(i).getServer()+"/"+
                            photosRetrofit.getPhoto().get(i).getId()+"_" +
                            photosRetrofit.getPhoto().get(i).getSecret()+".jpg";

                    title= photosRetrofit.getPhoto().get(i).getTitle();

                    flickrPhoto.setImage(uri);
                    flickrPhoto.setTitle(title);

                    photos.add(new FlickrPhoto(flickrPhoto.getTitle(),flickrPhoto.getImage()));


                    Log.w("++++++++++++",photosRetrofit.getPhoto().get(i).getTitle());

                    Log.w(">>>>>>>>>>>","https://farm"+photosRetrofit.getPhoto().get(i).getFarm()+".staticflickr.com/"+
                            photosRetrofit.getPhoto().get(i).getServer()+"/"+
                            photosRetrofit.getPhoto().get(i).getId()+"_" +
                            photosRetrofit.getPhoto().get(i).getSecret()+".jpg");



                }

            }

            @Override
            public void onFailure(Call<Photos> call, Throwable t) {
                Toast.makeText(PhotosListActivity.this,"Error :"+t.getMessage(),Toast.LENGTH_LONG).show();
                Log.w("---___--- Error ",t.getMessage());
            }
        });
    /*    Log.w("Hello",uri.toString());
        Log.w("Hello",title.toString());*/
        photos.add(new FlickrPhoto("karim","https://farm9.staticflickr.com/8450/29141814932_a62977990d.jpg"));
        return photos;
    }
}

1 个答案:

答案 0 :(得分:2)

问题是在使用数据向数组列表添加元素后,RecyclerView不会自动更新。您需要在适配器上调用notifyDataSetChanged()以强制进行此更新。