我正在尝试返回通过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();
}
});
}