Created
July 22, 2014 09:27
-
-
Save douzifly/87f122967b966e7e1952 to your computer and use it in GitHub Desktop.
android handle set as wallpaper
This file contains 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
<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