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
- 1차원 DP
- 2차원 dp
- 99클럽
- @Builder
- @GeneratedValue
- @GenericGenerator
- @NoargsConstructor
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- assertThat
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
Archives
- Today
- Total
기록
androidStudio/java/FireBase에서 특정 데이터만 가져오기 본문
FireBase
Android
TreeListData.java
public class TreeListData {
public String gu_nm;
public String lc;
public String wdpt_nm;
public String width_nm;
public TreeListData() {
}
public TreeListData(String gu_nm, String lc, String wdpt_nm, String width_nm) {
this.gu_nm = gu_nm;
this.lc = lc;
this.wdpt_nm = wdpt_nm;
this.width_nm = width_nm;
}
}
MainActivity.java
// 받아온 데이터를 받을 리스트
ArrayList<TreeListData> treeList = new ArrayList<>();
// 데이터 받아오기 : "gu_num"이 "중구"인 데이터 가져오기
DatabaseReference mDatabase = FirebaseDatabase.getInstance().getReference("Trees");
Query myTopPostsQuery = mDatabase.orderByChild("gu_nm").equalTo("중구");
myTopPostsQuery.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot snapshot) {
treeList.clear();
for (DataSnapshot dataSnapshot : snapshot.getChildren()){
TreeListData treeListData = dataSnapshot.getValue(TreeListData.class);
treeList.add(treeListData);
}
Log.w("MainActivity", "treeList = "+treeList.toString());
}
@Override
public void onCancelled(@NonNull DatabaseError error) {
Log.e("MainActivity", "onCancelled");
}
});
결과
참고자료
https://firebase.google.com/docs/database/android/lists-of-data?hl=ko
'Moblie > Android' 카테고리의 다른 글
[issue] java.lang.SecurityException (0) | 2021.12.07 |
---|---|
androidStudio/java/TTS 사용하기 (0) | 2021.11.30 |
androidStudio/Google Map API 사용하기 (0) | 2021.11.28 |
androidStudio/localhost 서버 접속하기 (0) | 2021.06.07 |
androidStudio/실제 단말기를 이용하여 실행시키기 (0) | 2021.03.12 |
Comments