ここにリンクの説明を入力して、この質問と同じ問題が発生しています。しかし、私はJavaではなく、ActionScriptとAdobeAIR2.6を使用してアプリケーションを実行しています。
次に、ActionScriptを介してプレースホルダーを削除する方法が問題になります。
Air3.0が使えるなら、ネイティブ拡張を作成し、このコードでJava関数を呼び出します
// Tell the media scanner about the new file so that it is
// immediately available to the user.
MediaScannerConnection.scanFile(this,new String[] { file.toString() }, null,
new MediaScannerConnection.OnScanCompletedListener() {
public void onScanCompleted(String path, Uri uri) {
Log.i("ExternalStorage", "Scanned " + path + ":");
Log.i("ExternalStorage", "-> uri=" + uri);
}
});