Created
October 28, 2015 10:37
-
-
Save hitesh-dhamshaniya/4d309c95a76c4be064c3 to your computer and use it in GitHub Desktop.
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
Uri imageUri = Uri.parse("/sdcard/Aa.png"); | |
//Uri imageUri = Uri.parse("/storage/emulated/0/designapp/Aa.png"); | |
Intent intent = new Intent(Intent.ACTION_ATTACH_DATA); | |
intent.setDataAndType(imageUri, "image/*"); | |
intent.putExtra("png", "image/*"); | |
startActivityForResult(Intent.createChooser(intent,"Set AS"), 1000); | |
User for Set Image as wallpaper, Contact Picture and other.... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment