我下载了一首歌,怎么把这首歌加入系统的数据库?
Intent intent = new Intent(Intent.ACTION_MEDIA_MOUNTED);
intent.setData(Uri.parse("file://"
+ Environment.getExternalStorageDirectory()));
sendBroadcast(intent);
这一个太费时间了,有没有可以只扫描一首歌进去的办法?
谢谢!
Intent intent = new Intent(Intent.ACTION_MEDIA_MOUNTED);
intent.setData(Uri.parse("file://"
+ Environment.getExternalStorageDirectory()));
sendBroadcast(intent);
这一个太费时间了,有没有可以只扫描一首歌进去的办法?
谢谢!
2014-12-30
举报