Using java Syntax Highlighting
- Intent i = new Intent(Intent.ACTION_VIEW);
- Uri u = Uri.withAppendedPath(MediaStore.Images.Media.INTERNAL_CONTENT_URI, "");
- i.setData(u);
- startActivity(i);
Parsed in 0.031 seconds, using GeSHi 1.0.8.4
but if the picture viewer is already running then it's just brought to the top view without searching for new pictures.
Anybody know how to force the Android Picture Viewer app to re-scan for pictures?
Thanks!

