有没有一种方法可以使用android微调器从firebase检索给定类别集合中的数据?

有没有一种方法可以使用android微调器从firebase检索给定类别集合中的数据?,android,firebase,Android,Firebase,这是我的数据库结构这是我的微调器包含一组类别 String[] items = new String[]{"Office and School supplies","Furniture","Automobiles and Motorycles","Electronics","Arts and Decoration","Entertainment","Other Accessories"}; Spinner dropdown = findViewById(R.id.spinner1

这是我的数据库结构这是我的微调器包含一组类别

    String[] items = new String[]{"Office and School supplies","Furniture","Automobiles and Motorycles","Electronics","Arts and Decoration","Entertainment","Other Accessories"};
    Spinner dropdown = findViewById(R.id.spinner1);
    ArrayAdapter adapter = new ArrayAdapter(this, android.R.layout.simple_spinner_dropdown_item, items);
    dropdown.setAdapter(adapter);

请检查您的数据库结构,并指出您希望获得的类别。在您的代码中,只有一个字符串数组。我希望以类别的形式获取字符串数组中的数据。@AlexMamo和我的数据库结构如下:成员-->图像URL:“https:…”名称:“dress”请将您的数据库结构添加为JSON文件或至少一个屏幕截图。@AlexMamo我刚刚添加了