Answers for "how to back activity in android"

1

android back navigation

@Override
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
  int itemId = item.getItemId();
  if (itemId == android.R.id.home) {
    // force up navigation to have the same behavior as temporal navigation
    onBackPressed();
    return true;
  } else {
    return super.onOptionsItemSelected(item);
  }
}
Posted by: Guest on March-08-2021
0

kotlin return to previous activity

if you use fragment u should use

getActivity().onBackPressed();
if you use single activity u can use

finish();
Posted by: Guest on May-17-2020

Code answers related to "how to back activity in android"

Browse Popular Code Answers by Language