Fix scoll to bottom on new message

This commit is contained in:
Erwan Croze 2018-10-08 15:47:55 +02:00
parent 244997e986
commit 1b14f35ab3
2 changed files with 3 additions and 3 deletions

View file

@ -587,6 +587,7 @@ public class ChatEventsAdapter extends ListSelectionAdapter {
}
}
notifyDataSetChanged();
mFragment.scrollToBottom();
}
/*

View file

@ -655,9 +655,7 @@ public class GroupChatFragment extends Fragment implements ChatRoomListener, Con
}
public void scrollToBottom() {
if (((mChatEventsList.getLastVisiblePosition() >= (mEventsAdapter.getCount() - 1)) && (mChatEventsList.getFirstVisiblePosition() <= (mEventsAdapter.getCount() - 1)))) {
mChatEventsList.setSelection(mEventsAdapter.getCount() - 1);
}
mChatEventsList.setSelection(mEventsAdapter.getCount() - 1);
}
public String getRemoteSipUri() {
@ -896,6 +894,7 @@ public class GroupChatFragment extends Fragment implements ChatRoomListener, Con
}
mEventsAdapter.addToHistory(event);
this.scrollToBottom();
}
@Override