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