Open gallery app from Android Intent

后端 未结 6 1205
难免孤独
难免孤独 2020-11-29 04:30

I\'m looking for a way to open the Android gallery application from an intent.

I do not want to return a picture, but rather just open the gallery to al

6条回答
  •  北荒
    北荒 (楼主)
    2020-11-29 05:20

    As you don't want a result to return, try following simple code.

    Intent i=new Intent(Intent.ACTION_PICK);
                i.setType("image/*");
                startActivity(i);
    

提交回复
热议问题