Last active
July 26, 2018 18:24
-
-
Save gbzarelli/04260412f0b2ab1841c5dd1e6f5e1728 to your computer and use it in GitHub Desktop.
Providing Up navigation from Notification
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<application ... > | |
... | |
<!-- The main/home activity (it has no parent activity) --> | |
<activity | |
android:name="com.example.myfirstapp.MainActivity" ...> | |
... | |
</activity> | |
<!-- A child of the main activity --> | |
<activity | |
android:name="com.example.myfirstapp.DisplayMessageActivity" | |
android:label="@string/title_activity_display_message" | |
android:parentActivityName="com.example.myfirstapp.MainActivity" > | |
<!-- Parent activity meta-data to support 4.0 and lower --> | |
<meta-data | |
android:name="android.support.PARENT_ACTIVITY" | |
android:value="com.example.myfirstapp.MainActivity" /> | |
</activity> | |
</application> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment