我在此处输入链接描述中遇到了与此问题相同的问题。但我不是用 Java 做我的应用程序,而是用 ActionScript 和 Adobe AIR 2.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);
}
});