Skip to content

Instantly share code, notes, and snippets.

@douzifly
Created July 22, 2014 09:27
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 douzifly/87f122967b966e7e1952 to your computer and use it in GitHub Desktop.
Save douzifly/87f122967b966e7e1952 to your computer and use it in GitHub Desktop.
android handle set as wallpaper
<intent-filter>
<action android:name="android.intent.action.ATTACH_DATA" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="content" />
<data android:scheme="file" />
<data android:mimeType="image/*" />
<category android:name="android.intent.category.ALTERNATIVE" />
<category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
</intent-filter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment