Commit 60df3a6d authored by Grigory Fedorov's avatar Grigory Fedorov

"Double contact list" bug fixed.

parent cb5dcfa6
...@@ -117,16 +117,14 @@ public class ContactList extends ManagedActivity implements OnChoosedListener, O ...@@ -117,16 +117,14 @@ public class ContactList extends ManagedActivity implements OnChoosedListener, O
setContentView(R.layout.contact_list); setContentView(R.layout.contact_list);
FragmentTransaction fragmentTransaction = getSupportFragmentManager()
.beginTransaction();
fragmentTransaction.add(R.id.container, new ContactListFragment(),
CONTACT_LIST_TAG);
fragmentTransaction.commit();
if (savedInstanceState != null) { if (savedInstanceState != null) {
sendText = savedInstanceState.getString(SAVED_SEND_TEXT); sendText = savedInstanceState.getString(SAVED_SEND_TEXT);
action = savedInstanceState.getString(SAVED_ACTION); action = savedInstanceState.getString(SAVED_ACTION);
} else { } else {
getSupportFragmentManager().beginTransaction().add(R.id.container,
new ContactListFragment(), CONTACT_LIST_TAG).commit();
sendText = null; sendText = null;
action = getIntent().getAction(); action = getIntent().getAction();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment