gpt4 book ai didi

java - 当我从回收器 View 中删除项目时,回收器 View 未刷新?

转载 作者:行者123 更新时间:2023-12-02 12:56:14 25 4
gpt4 key购买 nike

当我尝试从 recyclerview(完整图像 Activity )中删除项目时,我调用 onfinish() 方法返回到上一个 Activity ,即 recyclerview(GalleryActivity)

但是我删除的图像仍然可见,当我退出图库 Activity 并再次进入时,它会刷新。

任何解决方案,以便在删除项目时可以刷新。 When i delete an image this thing appears

这是我的 Recyclerview 适配器

公共(public)类RecyclerViewAdapter扩展了RecyclerView.Adapter{

private ArrayList<String> yeniliste;
private Context context;

public RecyclerViewAdapter(Context context, ArrayList<String> itemList) {
this.yeniliste = itemList;
this.context = context;
}

@Override
public RecyclerViewHolders onCreateViewHolder(ViewGroup parent, int viewType) {
View layoutView = LayoutInflater.from(parent.getContext()).inflate(R.layout.gallery_item, null);
RecyclerViewHolders rcv = new RecyclerViewHolders(layoutView);
return rcv;
}

@Override
public void onBindViewHolder(final RecyclerViewHolders holder, final int position) {
Bitmap bitmap = BitmapFactory.decodeFile(yeniliste.get(position));
holder.countryPhoto.setImageBitmap(bitmap);
holder.countryPhoto.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(v.getContext(),GalleryFullImage.class);
intent.putExtra("realid",String.valueOf(holder.getAdapterPosition()));
v.getContext().startActivity(intent);
}
});
}

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


public static class RecyclerViewHolders extends RecyclerView.ViewHolder implements View.OnClickListener{

public ImageView countryPhoto;

public RecyclerViewHolders(View itemView) {
super(itemView);
countryPhoto = (ImageView)itemView.findViewById(R.id.country_photo);
}

@Override
public void onClick(View view) {
Toast.makeText(view.getContext(), "Clicked Country Position = " + getAdapterPosition(), Toast.LENGTH_SHORT).show();

}

}

public void removeItem(int position)
{
yeniliste.remove(position);
notifyItemRemoved(position);
notifyItemRangeChanged(position, yeniliste.size());
}}

removeItem 方法也不起作用。这是我的完整图像 Activity 。当我从这里删除图像时。它不会刷新 GalleryActivity。

public class GalleryFullImage extends AppCompatActivity {
String idPath;
String realid;
ArrayList<String> stringList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.gallery_fullimage);

stringList = new ArrayList<>();
String targetPath= Environment.getExternalStorageDirectory().getAbsolutePath() + "/My Images/";
File targetDirector = new File(targetPath);
File[] files = targetDirector.listFiles();
Arrays.sort( files, new Comparator()
{
public int compare(Object o1, Object o2) {

if (((File)o1).lastModified() > ((File)o2).lastModified()) {
return -1;
} else if (((File)o1).lastModified() < ((File)o2).lastModified()) {
return +1;
} else {
return 0;
}
}

});
for (File file : files){
stringList.add(file.getAbsolutePath());
}

Intent i = getIntent();
idPath = i.getStringExtra("realid");
realid = stringList.get(Integer.parseInt(idPath));
Log.d("wow",realid);
File imgFile = new File(realid);
if(imgFile.exists()) {
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
ImageView myImage = (ImageView) findViewById(R.id.gallery_fullimg);
myImage.setImageBitmap(myBitmap);
myImage.setOnTouchListener(new ImageMatrixTouchHandler(getApplicationContext()));
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {

getMenuInflater().inflate(R.menu.delete, menu);

return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {

final int id = item.getItemId();

if (id == R.id.action_delete) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(GalleryFullImage.this);
alertDialog.setTitle("Confirm Delete...");
alertDialog.setMessage("Are you sure you want delete this?");
alertDialog.setPositiveButton("YES", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int which) {
RecyclerViewAdapter rcAdapter = new RecyclerViewAdapter(getApplicationContext(), stringList);
rcAdapter.removeItem(Integer.parseInt(idPath));
File file = new File(realid);
boolean deleted = file.delete();
Log.v("log_tag","deleted: " + deleted);
Toast.makeText(GalleryFullImage.this,"File Deleted", Toast.LENGTH_SHORT).show();
finish();
}
});
alertDialog.setNegativeButton("NO", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(getApplicationContext(), "You clicked on NO", Toast.LENGTH_SHORT).show();
dialog.cancel();
}
});
alertDialog.show();
return true;
}
return super.onOptionsItemSelected(item);
}}

这是画廊 Activity .

public class GalleryActivity extends AppCompatActivity {
ArrayList<String> stringList;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_gallery);
setTitle("Gallery");
stringList = new ArrayList<>();
String targetPath= Environment.getExternalStorageDirectory().getAbsolutePath() + "/My Images/";
File targetDirector = new File(targetPath);
File[] files = targetDirector.listFiles();
Arrays.sort( files, new Comparator()
{
public int compare(Object o1, Object o2) {

if (((File)o1).lastModified() > ((File)o2).lastModified()) {
return -1;
} else if (((File)o1).lastModified() < ((File)o2).lastModified()) {
return +1;
} else {
return 0;
}
}

});
for (File file : files){
stringList.add(file.getAbsolutePath());
}

RecyclerView rView = (RecyclerView)findViewById(R.id.recycler_view);
RecyclerView.LayoutManager layoutManager = new GridLayoutManager(getApplicationContext(),2);
rView.setHasFixedSize(true);
rView.setLayoutManager(layoutManager);
RecyclerViewAdapter rcAdapter = new RecyclerViewAdapter(getApplicationContext(), stringList);
rView.setAdapter(rcAdapter);


}
@Override
protected void onResume() {
super.onResume();
}}

最佳答案

在 GalleryActivity 中执行此操作

@Override
protected void onResume() {
super.onResume();
if(rView != null){
yourAdapter.notifyDataSetChanged();
}

};

创建 rView 和适配器全局变量。

关于java - 当我从回收器 View 中删除项目时,回收器 View 未刷新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44427369/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com