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
- FRAGMENT
- 밑줄
- ViewModel
- Android
- nav_graph
- 랜덤ID
- 팝업액티비티
- firebase
- Dialog
- ArrayList
- androidstudio
- 코틀린
- 안드로이드
- RealtimeDB
- MaterialButton
- Kotlin
- Activity
- OutlinedButton
- Imageview
- EditText
- lifecyclescope
- ROOM
- 안드로이드 스튜디오
- button
- BottomSheetDialog
- firebasefunctions
- ButtonWithButton
- 뷰바인딩
- 안드로이드스튜디오
- textview
Archives
- Today
- Total
목록Firebase/Cloud Firestore (1)
안드로이드 앱 개발
데이터 읽기
아래 코드는 Google Cloud Firestore에서 데이터를 읽어오기 기본 코드이다. DocumentReference docRef = db.collection("cities").document("SF"); docRef.get().addOnCompleteListener(new OnCompleteListener() { @Override public void onComplete(@NonNull Task task) { if (task.isSuccessful()) { DocumentSnapshot document = task.getResult(); if (document.exists()) { Log.d("readCusData", "DocumentSnapshot data: " + document.getData..
Firebase/Cloud Firestore
2021. 3. 9. 17:55