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 |
Tags
- nav_graph
- androidstudio
- MaterialButton
- FRAGMENT
- 밑줄
- 랜덤ID
- lifecyclescope
- Android
- firebasefunctions
- 코틀린
- EditText
- 뷰바인딩
- 안드로이드스튜디오
- 안드로이드 스튜디오
- 팝업액티비티
- ButtonWithButton
- ArrayList
- BottomSheetDialog
- Dialog
- textview
- firebase
- Kotlin
- 안드로이드
- ViewModel
- Imageview
- RealtimeDB
- ROOM
- Activity
- button
- OutlinedButton
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