Mastodon IzzyOnDroid


Say thanks!

Privacy Links
↓ Your product here? ↓
Das Inoffizielle Android-HandbuchAndroid kennenlernen, Tipps & TricksDas Inoffizielle Android-Handbuch
Android kennenlernen, Tipps & Tricks
Buy at Amazon for EUR 16,99
Das Inoffizielle Android SystemhandbuchTiefer ins System einsteigenDas Inoffizielle Android Systemhandbuch
Tiefer ins System einsteigen
Buy at Amazon for EUR 7,00
Die besten Android-AppsDen Androiden austattenDie besten Android-Apps
Den Androiden austatten
Buy at Amazon for EUR 5,00
 
StatsPermissionsConcernsSearch apps by category and permissiondehelp

MediaScanner

To speed-up listings of your media in the gallery (and in audio/video players), Android organizes them in an internal database. For its maintenance, there's the MediaScanner – which unfortunately only gets triggered to do its job on certain events: when a MTP connection was closed, or a medium (usually the external SDCard) was mounted. The latter automatically happens on boot, but on devices supporting external SDCards can be done manually via the corresponding system menu.

Usually not an issue. But if you sync your library with your PC by other means, or manually copy/move/delete files via FTP or a file manager, this leaves you in the dark: your changes stay invisible until the next scan finishes. And above means to trigger that are not really practical. Luckily, there are some little tools available to help you out:

Trigger the MediaScanner

2025-03-04

Configure the MediaScanner

2025-03-12

PS: If you don't want a separate app for that, and are fine with climbing through menus: in Developer options › Developer Tools › Media Provider someROMs provide a button labeled "Scan SD Card", which does the job as well. If not, ADB might come to your rescue with e.g.

adb shell am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d 'file:///sdcard/DCIM'
2025-03-12