在聊天应用程序开始时,用户可以看到可用的组(列表视图组)列表,用户可以创建新组或单击可用组中的某些组,然后开始编写消息(listview消息) 。函数CreateNewMessage和CreateNewGroup正确地将信息推送到firebase 上面的场景工作当用户从listview向后导航(popBackStack())时消息发生到GroupFragment会产生finne问题,这里应该向用户显示可用组的列表,但listview为空。 ReadGroupData()函数不从firebase读取已创建的组,并将它们插入组列表视图中。如何实现这一目标?
GroupFragment:
public void ReadGroupData() {
Firebase firebaserootRef = new Firebase("https://000.firebaseio.com");
firebaserootRef.addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(DataSnapshot snapshot, String s) {
if (snapshot.getValue() != null) {
Group newGroup = new Group((String)snapshot.child("name").getValue(),
(String) snapshot.child("id").getValue());
if(!groupKeyValues.contains(newGroup.GetId())) {
groupKeyValues.add(newGroup.GetId());
AddToLstViewGroup(newGroup);
System.out.println("Read group data from firebase and
inserted in listView");
}
}
}
});
}
public void AddToLstViewGroup(Group newGroup) {
groupNameList.add(newGroup);
if(groupAdapter == null) {
groupAdapter = new GroupAdapter(getActivity(), groupNameList);
}
if (lstViewGroup == null) {
lstViewGroup = (ListView) getView().
findViewById(R.id.listView_group);
}
lstViewGroup.setOnItemClickListener(onItemClickListener);
lstViewGroup.setOnItemLongClickListener(onItemLongClickListener);
groupAdapter.notifyDataSetChanged();
lstViewGroup.setAdapter(groupAdapter);
}
ChatFragment:
public void ReadChatMessages(Firebase firebaseRootRef) {
firebaseRootRef.addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(DataSnapshot snapshot, String s) {
if (snapshot.child(GetGroupId()).child("messages").
getChildren() != null) {
for (DataSnapshot c :
snapshot.child(GetGroupId()).child("messages").getChildren()) {
String key = c.getKey();
Message newMessage = new Message();
newMessage.SetFrom((String) c.child("from").getValue());
newMessage.SetMsg((String)
c.child("message").getValue());
newMessage.SetTime((String) c.child("time").getValue());
newMessage.SetId((String) c.child("id").getValue());
if ((!msgKeyValues.contains(key)) ||
newMessage.GetFrom() != "") {
msgKeyValues.add(key);
AddToLstViewChat(newMessage);
//Automatic scrolls to last line in listView.
lstViewChat.setSelection(chatAdapter.getCount() -1);
}
}
}
}
public void AddToLstViewChat(Message newMessage) {
chatMsgList.add(newMessage);
if (chatAdapter == null) {
chatAdapter = new ChatAdapter(getActivity(), chatMsgList);
}
if(IsMsgFromMe(newMessage)) {
lstViewChat = (ListView)
getView().findViewById(R.id.listView_chat_message_me);
} else {
lstViewChat =
(ListView)getView().findViewById(R.id.listView_chat_message_others);
}
chatAdapter.notifyDataSetChanged();
lstViewChat.setAdapter(chatAdapter);
}
ChatActivity:
@Override
public void onBackPressed() {
if (getFragmentManager().getBackStackEntryCount() > 0) {
getFragmentManager().popBackStack();
} else {
finish();
}
}
对于所有代码,请点击链接:" http://pastebin.com/97nR68Rm"
解!
Kato感谢您的耐心和帮助。我现在找到了解决问题的方法。我在onCreateView方法的最后(返回之前)调用了ReadGroupData()和ReadChatMessages()。正如Kato指出onCreate()没有被调用popBackStack() 在我的AddToLStViewGroup中,删除了lstViewGroup的if语句,所以现在它总是设置listView,否则会因为找不到正确的视图而引发异常。澄清:
删除此行:
if (lstViewGroup == null) {
lstViewGroup = (ListView)getView().findViewById(R.id.listView_group);
}
并替换为:
ListView lstViewGroup=(ListView)getView().findViewById(R.id.listView_group);
答案 0 :(得分:0)
Kato感谢您的耐心和帮助。我现在找到了解决问题的方法。我在onCreateView方法中最后(返回前)调用ReadGroupData()
和ReadChatMessages()
。正如加藤所指出的onCreate()
没有被调用popBackStack()
在我的AddToLStViewGroup
中,if
的{{1}}语句被删除,所以现在它总是设置listView,否则会因为找不到正确的视图而引发异常。
澄清:
我删除了这一行:
listViewGroup
并将其替换为:
if (lstViewGroup == null) {
lstViewGroup = (ListView)getView().findViewById(R.id.listView_group);
}
(原提问者将答案作为问题的一部分发布。我在这里将其复制为家务管理。)