I wanna to open phones gallery through a button click. In my activity I have a button, I want to open the gallery through that button click.
On your button's OnClickListenner, create this intent :
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse( "content://media/internal/images/media"));
Does this fit with your expectations ?