RecyclerView не становится пустым - PullRequest
1 голос
/ 12 марта 2019

Мое приложение имеет основное действие со списком элементов (скажем, элемент A и элемент B), каждый элемент запускает одно и то же действие (UserGalleryActivity), но в представлении recycler в Activity должно отображаться только элементы, связанные с элементом ( назовем его А), выбранным в MainActivity.

Моя проблема в том, что если я сначала выберу (например) элемент A, он будет работать правильно, и RecyclerView в UserGalleryActivity отобразит только элементы A, но затем, когда я вернусь к MainActivity и выберу B, UserGalleryActivity покажи мне предметы А, а также предметы Б.

Как я могу исправить эту проблему? любая идея? Заранее спасибо

Код UserGalleryActivity:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_user_gallery);

    //L'activity riceve tramite intent dal main l'oggetto User
    Intent intent = getIntent();
    int user = intent.getIntExtra("user", -1);
    System.out.println("UserIndex: " + user);
    System.out.println(UsersSingleton.getInstance().getArray().get(user).getPhotos().size());
    if(user >= 0 && user<=UsersSingleton.getInstance().getArray().size()){
        String username = UsersSingleton.getInstance().getArray().get(user).getUsername();
        username = username.substring(0, 1).toUpperCase() + username.substring(1);
        UserGalleryActivity.this.setTitle(username);
        System.out.println("UserIndex: " + user);
        //System.out.println(UsersSingleton.getInstance().getArray().get(user).getPhotos().get(0).toString());
        setRecycleView(user);

    }

}


//Al termine della creazione dell'arraylist di users viene invocata setReView con parameto l'arraylist creato
private void setRecycleView(int userIndex){
    RecyclerView recyclerView = findViewById(R.id.photosList);
    recyclerView.setHasFixedSize(true);
    RecyclerView.LayoutManager layoutManager = new GridLayoutManager(this,2);
    recyclerView.setLayoutManager(layoutManager);
    MyAdapterPhotos adapter = new MyAdapterPhotos(this, userIndex);
    recyclerView.setAdapter(adapter);

Код MyAdapterPhotos:

private int usersIndex;
private Context context;
JSONHelper jsonHelper;
URLHelper urlHelper;
ArrayList<Photo> photosList;
//Bitmap bitmap;


public MyAdapterPhotos(Context context, int usersList) {
    this.context = context;
    this.usersIndex = usersList;
    jsonHelper = new JSONHelper();
    urlHelper = new URLHelper();
    photosList = new ArrayList<>();

}

@NonNull
@Override

public MyAdapterPhotos.ViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) {
    View view = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.cell_layout_gallery,
            viewGroup, false);
    return new ViewHolder(view);
}

@Override
public void onBindViewHolder(@NonNull ViewHolder holder, final int position) {
    if (UsersSingleton.getInstance().getArray().get(usersIndex).getPhotos().get(position) != null){
        holder.title.setText(UsersSingleton.getInstance().getArray().get(usersIndex).getPhotos().get(position).getCity());
        holder.img.setScaleType(ImageView.ScaleType.CENTER_CROP);//prima era centercrop
        String username = UsersSingleton.getInstance().getArray().get(usersIndex).getUsername();
        username = username.substring(0, 1).toUpperCase() + username.substring(1);
        holder.author.setText(username);
        System.out.println("Numero di Foto: " + UsersSingleton.getInstance().getArray().get(usersIndex).getPhotos().size());
        System.out.println("Posizione: " + position);
        System.out.println(UsersSingleton.getInstance().getArray().get(usersIndex).getPhotos().get(position).toString());
        setImage(UsersSingleton.getInstance().getArray().get(usersIndex).getPhotos().get(position).getSmall(), holder.img);
    }


}

@Override
public int getItemCount() {
    return UsersSingleton.getInstance().getArray().get(usersIndex).getPhotos().size();
}

public class ViewHolder extends RecyclerView.ViewHolder{
    private TextView title;
    private ImageView img;
    private TextView author;

    public ViewHolder(View view){
        super(view);
        title = view.findViewById(R.id.title_g);
        img = view.findViewById(R.id.img_g);
        author = view.findViewById(R.id.author_g);


        // on image item click
        img.setOnClickListener(new View.OnClickListener(){
            @Override
            public void onClick(View v) {
                // get position
                int pos = getAdapterPosition();

                // check if item still exists
                if(pos != RecyclerView.NO_POSITION){
                    int clickedDataItem = pos;

                    /* for future animation
                    if (img.getDrawable() != null) {
                        bitmap = ((BitmapDrawable) img.getDrawable()).getBitmap();
                    } */

                    //se l'array di photo dell'utente è ancora vuoto, scaricale. altrimenti usa quelle che hai gia
                    Intent photosIntent = new Intent(context, PhotoDetailActivity.class);
                    photosIntent.putExtra("user", usersIndex);
                    photosIntent.putExtra("photo", clickedDataItem);
                    context.startActivity(photosIntent);

                    /*  for future animations
                    ActivityTransitionLauncher.with((AppCompatActivity) context)
                            .from(img)
                            .image(bitmap)
                            .launch(photosIntent);*/

                    //se l'array di photo dell'utente è ancora vuoto, scaricale. altrimenti usa quelle che hai gia


                }
            }
        });

        // on title item click
        view.setOnClickListener(new View.OnClickListener(){
            @Override
            public void onClick(View v) {
                // get position
                int pos = getAdapterPosition();

                // check if item still exists
                if(pos != RecyclerView.NO_POSITION){
                    //Photo clickedDataItem = UsersSingleton.getInstance().getArray().get(usersIndex).getPhotos().get(pos);
                    int clickedDataItem = pos;

                    //se l'array di photo dell'utente è ancora vuoto, scaricale. altrimenti usa quelle che hai gia
                    Intent photosIntent = new Intent(context, PhotoDetailActivity.class);
                    photosIntent.putExtra("user", usersIndex);
                    photosIntent.putExtra("photo", clickedDataItem);
                    context.startActivity(photosIntent);



                    //Toast.makeText(v.getContext(), "You clicked " + clickedDataItem, Toast.LENGTH_SHORT).show();
                }
            }
        });

    }

}
// metodo set immagine dell'utente dell'imageview
private void setImage(String imageUrl, ImageView img){
    CircularProgressDrawable circularProgressDrawable =
            new CircularProgressDrawable(context);
    circularProgressDrawable.setStrokeWidth(5f);
    circularProgressDrawable.setCenterRadius(30f);
    circularProgressDrawable.start();
    GlideApp.with(context)
            .load(imageUrl)
            .placeholder(circularProgressDrawable)
            .into(img);
}

1 Ответ

1 голос
/ 12 марта 2019

Слышать - это идея:

Сначала вы должны очистить свой список, а затем добавить другие данные к этому

   yourlist.clear();
   // then add item B to your list and call adapter

Пример:

      //   Items : 

        Room A = new Room();
        Room B = new Room();

  //  THEN FILL A AND B ...

Заполнение списка, как показано ниже, и вызов адаптера:

        List<Room> roomList = new ArrayList<>();
        roomList.add(A);
        Adapter adapter = new Adapter(roomList , getContext(), this);
        recyclerView.setLayoutManager(new GridLayoutManager(getActivity() , 1));
        recyclerView.setAdapter(adapter);

Я думал, что вы не очистили свой список от пункта А:

        roomList.clear();
        roomList.add(B);
       // adapter.notifyDataSetChanged(); Or :
        adapter = new Adapter(roomList , getContext(), this);
        recyclerView.setLayoutManager(new GridLayoutManager(getActivity() , 1));
        recyclerView.setAdapter(adapter);
...