尝试从Cloud Firestore上的文档中检索文档编号

时间:2018-08-26 18:57:08

标签: android google-cloud-firestore

我正在尝试返回通过onClick方法选择的文档的文档ID。文档正在RecyclerView中显示。是否可以从Cloud Firestore返回文档ID。

这是我的代码,目前此代码返回null:

        @Override
        public void onItemClick(Session documentSnapshot, int position) {
            String session = documentSnapshot.getDocumentID();
            startActivity(new Intent(SessionManagement.this, QRGenerator.class));

            Toast.makeText(SessionManagement.this, "Session ID: " +session,Toast.LENGTH_SHORT).show();
        }
    });
}

0 个答案:

没有答案