How to get notified of each new image being visible to the gallery app?

前端 未结 3 1706
渐次进展
渐次进展 2021-02-05 16:05

Background

When the user downloads a new image or captures one using the camera, the gallery app will get updated to show the new images.

I need to be notified

3条回答
  •  终归单人心
    2021-02-05 16:18

    You may want to look into adding these to your filter as well:

    com.android.camera.NEW_PICTURE
    com.android.camera.NEW_VIDEO
    android.hardware.action.NEW_PICTURE
    android.hardware.action.NEW_VIDEO
    

    The android.hardware.x actions are the "official" current broadcasts, but the com.android.x ones are sent by Samsung devices and older versions of Android.

提交回复
热议问题