每件事都很好,但是文本没有出现,尽管当我添加到 ref 一个新孩子时列表添加项目,我试图更改 R.layout.simple_list_item_1 但它不起作用
Firebase ref = new Firebase("https://shoppinglist-fahmi.firebaseio.com/msg");
FirebaseListAdapter<String> listAdapter = new FirebaseListAdapter<String>(this,String.class, android.R.layout.simple_list_item_1,ref) {
@Override
protected void populateView(View view, String s, int i) {
}
};
listView.setAdapter(listAdapter);