single contact selection

This commit is contained in:
Jake McGinty
2014-02-13 01:35:08 -08:00
parent 9438973eac
commit 9b41675f8f
14 changed files with 576 additions and 50 deletions

View File

@@ -171,7 +171,7 @@ public class GroupCreateActivity extends PassphraseRequiredSherlockFragmentActiv
@Override
public void afterTextChanged(Editable editable) {
if (editable.length() > 0)
getSupportActionBar().setTitle(editable);
getSupportActionBar().setTitle(getString(R.string.GroupCreateActivity_actionbar_title) + ": " + editable.toString());
else
getSupportActionBar().setTitle(R.string.GroupCreateActivity_actionbar_title);
}