Skip to content

Instantly share code, notes, and snippets.

@Foso
Created December 3, 2018 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Foso/092caab594578c8cd894016c7f24867d to your computer and use it in GitHub Desktop.
Save Foso/092caab594578c8cd894016c7f24867d to your computer and use it in GitHub Desktop.
How to link your own app settings in Androids App Info Page
<activity
android:name="SettingsActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment