0

我想触发媒体,但不是整个媒体(因为在某些设备上需要太多时间),我想触发的是/mnt/sdcard/my_folder。我正在使用触发我的媒体

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

如何触发特定文件夹?谢谢!

4

1 回答 1

0

“刷新或更新媒体”的正确方法是使用MediaScannerConnectionand scanFile(),而不是发送应该由操作系统发送的广播。

于 2012-09-03T14:28:15.497 回答