Skip to content

Instantly share code, notes, and snippets.

@JonDouglas
Created September 25, 2014 17:04
Show Gist options
  • Select an option

  • Save JonDouglas/df195b39029f3441b16c to your computer and use it in GitHub Desktop.

Select an option

Save JonDouglas/df195b39029f3441b16c to your computer and use it in GitHub Desktop.
<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