如何使用notifyDataSetChanged()刷新RecyclerView

时间:2019-06-19 07:41:25

标签: java firebase firebase-realtime-database

我正在使用FirebasDatbase,并在下载数据库后努力刷新recyclerview。 因此,发生的事情是-在下载数据之前加载了recyclerview,使其大小为0。然后我关闭recyclerview并在几秒钟后再次打开,它会从数据中完全加载recyclerview

public class ItemActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_activity);

        getIncomingIntent();
    }

    private void showBranches(final String categoryName) {
        databaseReference = FirebaseDatabase.getInstance().getReference().child("Categories");
        databaseReference.addValueEventListener(new ValueEventListener() {
            @Override
            public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
                for(DataSnapshot ds : dataSnapshot.child(categoryName).getChildren()) {
                    mDishName.add(ds.getValue().toString());
                }
                for(DataSnapshot ds : dataSnapshot.child(categoryName + "Logos").getChildren()){
                    mImages.add(ds.getValue().toString());
                }
                for(DataSnapshot ds : dataSnapshot.child(categoryName + "Details").getChildren()) {
                    mDishDetails.add(ds.getValue().toString());
                }
            }

            @Override
            public void onCancelled(@NonNull DatabaseError databaseError) {
            }
        });
    }


    public void getIncomingIntent(){
        if(getIntent().hasExtra("title")){
            String categoryName = getIntent().getStringExtra("title");
            showBranches(categoryName);
            initRecyclerView();
        }
    }
    public void initRecyclerView(){
        adapter = new ItemRCVAdapter(mDishName, mImages, mDishDetails, this);
        recyclerView.setAdapter(adapter);
        recyclerView.setLayoutManager(new LinearLayoutManager(this));
        recyclerView.forceLayout();
    }
}

我希望recyclerview可以在更改时重新加载自身。而不是显示一个空列表。

0 个答案:

没有答案