Marinus Snyman
Lurker
Hello
In Android Studio I created a HomeFragment from MainActivity, then a new Activity is started when Bluetooth Data arrives. When I press the Back button while in the new Activity, the app closes. I want the App to go back to the HomeFragment.
I tried the following in the new Activity: But the App still closes:
The FLow of code is in the attached image:
Thanx for the help
In Android Studio I created a HomeFragment from MainActivity, then a new Activity is started when Bluetooth Data arrives. When I press the Back button while in the new Activity, the app closes. I want the App to go back to the HomeFragment.
I tried the following in the new Activity: But the App still closes:
Code:
@Override
public void onBackPressed() {
finish();
}
The FLow of code is in the attached image:
Thanx for the help