code cleanup / reformat in ShareViaAccount
This commit is contained in:
parent
b27fa6d206
commit
7aa8aba5c0
|
@ -278,8 +278,8 @@ public class EditAccountActivity extends OmemoActivity implements OnAccountUpdat
|
|||
if (mAccount != null
|
||||
&& mAccount.getStatus() != Account.State.ONLINE
|
||||
&& mFetchingAvatar) {
|
||||
startActivity(new Intent(getApplicationContext(),
|
||||
ManageAccountActivity.class));
|
||||
//TODO: maybe better redirect to StartConversationActivity
|
||||
startActivity(new Intent(this, ManageAccountActivity.class));
|
||||
finish();
|
||||
} else if (mInitMode && mAccount != null && mAccount.getStatus() == Account.State.ONLINE) {
|
||||
if (!mFetchingAvatar) {
|
||||
|
|
|
@ -45,14 +45,10 @@ public class ShareViaAccountActivity extends XmppActivity {
|
|||
setContentView(R.layout.activity_manage_accounts);
|
||||
setSupportActionBar(findViewById(R.id.toolbar));
|
||||
configureActionBar(getSupportActionBar());
|
||||
accountListView = (ListView) findViewById(R.id.account_list);
|
||||
accountListView = findViewById(R.id.account_list);
|
||||
this.mAccountAdapter = new AccountAdapter(this, accountList, false);
|
||||
accountListView.setAdapter(this.mAccountAdapter);
|
||||
accountListView.setOnItemClickListener(new OnItemClickListener() {
|
||||
|
||||
@Override
|
||||
public void onItemClick(AdapterView<?> arg0, View view,
|
||||
int position, long arg3) {
|
||||
accountListView.setOnItemClickListener((arg0, view, position, arg3) -> {
|
||||
final Account account = accountList.get(position);
|
||||
final String body = getIntent().getStringExtra(EXTRA_BODY);
|
||||
|
||||
|
@ -66,7 +62,6 @@ public class ShareViaAccountActivity extends XmppActivity {
|
|||
}
|
||||
|
||||
finish();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue