Code Snippet to access gallery,
Intent intent = new Intent();
// View the gallary
intent.setAction(Intent.ACTION_VIEW);
intent.setData(android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI);
// Start the activity
startActivity(intent);
Code Snippet to open Camera,
Intent intent = new Intent()
intent.setAction(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivity(intent);
startActivity(intent);
Code Snippet to access Call Log:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_CALL_BUTTON);
startActivity(intent);
startActivity(intent);
Code Snippet to access Contacts:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(android.provider.Contacts.People.CONTENT_URI);
startActivity(intent);
intent.setData(android.provider.Contacts.People.CONTENT_URI);
startActivity(intent);
hello,
ReplyDeleteI want to a picture from gallery set image button.
how do I return a picture from gallery?