mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-22 07:57:30 +00:00
Preserve ConversationList scroll state in between onPause/onResume.
This commit is contained in:
parent
5cb02445e8
commit
a185750bb7
@ -73,8 +73,8 @@ public class ConversationListFragment extends SherlockListFragment
|
||||
|
||||
@Override
|
||||
public void onAttach(Activity activity) {
|
||||
super.onAttach(activity);
|
||||
this.listener = (ConversationSelectedListener)activity;
|
||||
super.onAttach(activity);
|
||||
this.listener = (ConversationSelectedListener)activity;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -100,12 +100,14 @@ public class ConversationListFragment extends SherlockListFragment
|
||||
}
|
||||
|
||||
public void setMasterSecret(MasterSecret masterSecret) {
|
||||
this.masterSecret = masterSecret;
|
||||
initializeListAdapter();
|
||||
if (this.masterSecret != masterSecret) {
|
||||
this.masterSecret = masterSecret;
|
||||
initializeListAdapter();
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressLint({ "NewApi", "NewApi" })
|
||||
private void initializeSearch(android.widget.SearchView searchView) {
|
||||
private void initializeSearch(android.widget.SearchView searchView) {
|
||||
searchView.setOnQueryTextListener(new android.widget.SearchView.OnQueryTextListener() {
|
||||
@Override
|
||||
public boolean onQueryTextSubmit(String query) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user