I am trying to open inbuilt gallery app pressing a button in my app.
I am trying out on Android 2.3 and above phones. The phones/tablet that I have are
Samsung
I figured out the way..
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(
"content://media/internal/images/media"));
startActivity(intent);
This piece of code just opened the gallery without any issues. Could get it working on all versions!
Thought to put it as answer for people who are looking to open a Gallery on all versions.
Thanks Guys! :)