Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个向文件添加id3v2标签的 Android 应用程序。mp3没关系,但是当我打开 Google Play 音乐时,mp3标签没有更新。即使我清除缓存。
id3v2
mp3
但是,当我在 Windows 中打开标记到我的应用程序中的 mp3 文件时,所有标记都会正确显示更改。
如何强制 Play Music 以编程方式或通过我可以在我的应用程序中插入的提示刷新标签。
谢谢..
我找到了解决方案,我需要更新 android 中的媒体库:
public void updateMediaScanner(String path){ MediaScannerConnection.scanFile(this, new String[]{path}, null, new MediaScannerConnection.OnScanCompletedListener() { @Override public void onScanCompleted(String path, Uri uri) {} }); }