Open gallery app from Android Intent

后端 未结 6 1186
难免孤独
难免孤独 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条回答
  •  Happy的楠姐
    2020-11-29 05:07

    This is what you need:

    ACTION_VIEW
    

    Change your code to:

    Intent intent = new Intent();  
    intent.setAction(android.content.Intent.ACTION_VIEW);  
    intent.setType("image/*");
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(intent);
    

提交回复
热议问题