Android Studio 如何重新加载回收程序视图

8oomwypt  于 2022-11-25  发布在  Android
关注(0)|答案(2)|浏览(116)

我正在创建一个Android应用程序来保存密码。在主屏幕上,我使用回收器视图来显示所有密码。我有两个按钮,一个用于添加新密码,另一个用于更新密码,当用户单击添加新密码时,新活动(添加新密码活动)将打开。从添加新密码活动返回后,我应该如何在主屏幕上重新加载回收器视图?
我试着回忆起最初的recyclerview功能,但它不起作用。

addData.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
//                action to be performed after it was clicked;
                Intent i = new Intent(MainScreen.this, AddNewPassword.class);
                i.putExtra("id", (String) null);
                i.putExtra("Platform", "");
                i.putExtra("User", "");
                i.putExtra("password", "");
                i.putExtra("boolean", false);
                startActivity(i);

            }
        });

从AddNewPassword活动返回后,应如何刷新当前窗口?

nr9pn0ug

nr9pn0ug1#

进行更改后调用notifyDataSetChanged:

adapter.notifyDataSetChanged()
ykejflvf

ykejflvf2#

while comming back to first you have to override onResume method and in that method you have to bind that recyclerAdapter and last call.

adapter.notifyDataSetChanged()

相关问题