How to search for a value in firebase Android

前端 未结 7 1795
孤城傲影
孤城傲影 2020-12-01 05:37

I am saving data as follows in the Firebase:

I want to find all records that have #Yahoo in their title. What will be the exact query for that?

I am

7条回答
  •  有刺的猬
    2020-12-01 06:24

    I know this is late but this solution worked for me.

     getContentResolver().delete(MediaStore.Video.Media.EXTERNAL_CONTENT_URI,
                            MediaStore.Video.VideoColumns.DATA + "=?" , new String[]{ paths.get(i) });
    

提交回复
热议问题