Populating a ListView with firebase data in android
问题 I am back with this question again, I am close though: I have the following code which I am trying to show the firebase values in a list view. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_mystatement); listview = (ListView) findViewById(R.id.listview); textView4 = (TextView) findViewById(R.id.textView4); adapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, list); listview.setAdapter