android - RecyclerView 不会变空

标签 android android-activity android-recyclerview recyclerview-layout

我的应用程序有一个带有项目列表的主 Activity (假设项目 A 和项目 B),每个项目都将启动相同的 Activity (UserGalleryActivity),但 Activity 内的 recyclerView 应该只显示与该项目相关的项目 (我们称它为 A) 在 MainActivity 中选择。

我的问题是,如果我首先选择(例如)项目 A,它可以正常工作,并且 UserGalleryActivity 中的 RecyclerView 仅显示 A 的项目,但是当我返回 MainActivity 并选择 B 时,UserGalleryActivity显示 A 的项目以及 B 的项目。

我该如何解决这个问题?任何想法? 提前谢谢你

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);
}

最佳答案

听到的是一个想法:

首先你应该清除你的列表,然后添加另一个数据

   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);

我认为您没有从项目 A 中清除列表:

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

关于android - RecyclerView 不会变空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55110453/

相关文章:

java - 如何在android中等待改变不同的imageview?

android - 将 xml 用于第二个 Activity 的问题(R.id 问题)

android - RecyclerView RecyclerViewDataObserver 未注册

android - 图像适配器泄漏内存

android - 如何配置警告对话的标题

android - 如何在 Android 中禁用 RecyclerView 项目?

java - 在 if/else 命令下读取字符串值

android - Android 应用程序的图像大小

android - 如何在不要求用户在浏览器或应用程序之间做出决定的情况下从链接打开应用程序,只需立即打开我的应用程序

android - 加载程序在 Activity 启动时重新启动混淆