Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- button
- 팝업액티비티
- 밑줄
- ROOM
- Android
- 안드로이드스튜디오
- ViewModel
- nav_graph
- 안드로이드
- 안드로이드 스튜디오
- firebasefunctions
- OutlinedButton
- Kotlin
- 랜덤ID
- Dialog
- 뷰바인딩
- 코틀린
- Imageview
- textview
- Activity
- EditText
- androidstudio
- firebase
- RealtimeDB
- ButtonWithButton
- FRAGMENT
- ArrayList
- BottomSheetDialog
- lifecyclescope
- MaterialButton
Archives
- Today
- Total
안드로이드 앱 개발
데이터 읽기 본문
아래 코드는
Google Cloud Firestore에서 데이터를 읽어오기 기본 코드이다.
DocumentReference docRef = db.collection("cities").document("SF");
docRef.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
@Override
public void onComplete(@NonNull Task<DocumentSnapshot> task) {
if (task.isSuccessful()) {
DocumentSnapshot document = task.getResult();
if (document.exists()) {
Log.d("readCusData", "DocumentSnapshot data: " + document.getData());
} else {
Log.d("readCusData", "No such document");
}
} else {
Log.d("readCusData", "get failed with ", task.getException());
}
}
});