Add only forward flag when coming from main activity
This commit is contained in:
parent
52219995bb
commit
14596c75fd
@ -41,10 +41,15 @@ public class AccountTypeListActivity extends AppCompatActivity {
|
|||||||
binding.accountTypeRecyclerview.setLayoutManager(new LinearLayoutManager(this));
|
binding.accountTypeRecyclerview.setLayoutManager(new LinearLayoutManager(this));
|
||||||
binding.accountTypeRecyclerview.addItemDecoration(new DividerItemDecoration(this, LinearLayout.VERTICAL));
|
binding.accountTypeRecyclerview.addItemDecoration(new DividerItemDecoration(this, LinearLayout.VERTICAL));
|
||||||
|
|
||||||
|
boolean fromMainActivity = getIntent().getBooleanExtra("fromMainActivity", false);
|
||||||
|
|
||||||
adapter = new AccountTypeListAdapter(accountType -> {
|
adapter = new AccountTypeListAdapter(accountType -> {
|
||||||
if (!(accountType.getAccountType() == Account.AccountType.LOCAL)) {
|
if (!(accountType.getAccountType() == Account.AccountType.LOCAL)) {
|
||||||
Intent intent = new Intent(getApplicationContext(), AddAccountActivity.class);
|
Intent intent = new Intent(getApplicationContext(), AddAccountActivity.class);
|
||||||
|
|
||||||
|
if (fromMainActivity)
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
|
intent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
|
||||||
|
|
||||||
intent.putExtra("accountType", accountType);
|
intent.putExtra("accountType", accountType);
|
||||||
|
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
|
@ -145,6 +145,7 @@ public class MainActivity extends AppCompatActivity implements SwipeRefreshLayou
|
|||||||
switch (id) {
|
switch (id) {
|
||||||
case DrawerManager.ADD_ACCOUNT_ID:
|
case DrawerManager.ADD_ACCOUNT_ID:
|
||||||
Intent intent = new Intent(this, AccountTypeListActivity.class);
|
Intent intent = new Intent(this, AccountTypeListActivity.class);
|
||||||
|
intent.putExtra("fromMainActivity", true);
|
||||||
startActivityForResult(intent, ADD_ACCOUNT_REQUEST);
|
startActivityForResult(intent, ADD_ACCOUNT_REQUEST);
|
||||||
break;
|
break;
|
||||||
case DrawerManager.ACCOUNT_SETTINGS_ID:
|
case DrawerManager.ACCOUNT_SETTINGS_ID:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user