0

私のアプリでは、ユーザーがアプリを介して画像を共有するたびにギャラリーから画像を削除する必要がありますが、これを行う方法がわかりません。私はすでに試しました

SendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED,Uri.parse("file://"+ Environment.getExternalStorageDirectory())));

しかし、それはそれを助けるのではなく、次のメッセージでギャラリーを終了しますMediaScanner is running.

これを行う他のアイデアがある場合は、共有してください

4

1 に答える 1

0

You might be using One ArrayList to bind the Gallery from list of images (Sdcard ) . After deleting you have to rebind the Adapter view. Before that Use SendBroadcast method.

So After rebinding Adapter list or array will get refreshed.(It will automatically get neglect if the item is not there in the sdcard while reading the no of files and the files. ).

hope this will help you.

于 2013-01-02T12:05:24.033 に答える