Reputation: 61
when I create a new activity, Android Studio show me this photo:
It have a Back button but activity haven't it. how can I Make visible it?
Upvotes: 1
Views: 88
Reputation: 351
In manifest declare the activity as a parent activity to get this button like this
<activity android:name="com.owletogroceries.activity.RewardsActivity"/>
<activity android:name="OrderConfirmationActivity"
android:parentActivityName="ProductActivity"/>
Upvotes: 0
Reputation: 87
put getSupportActionBar().setDisplayHomeAsUpEnabled(true);
into onCreate() method in your activity class
Upvotes: 1