How to open phones gallery through code

后端 未结 4 1319
青春惊慌失措
青春惊慌失措 2020-11-29 05:21

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.

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-29 06:04

    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 ?

提交回复
热议问题