我遇到的问题与enter link description here中的问题相同。但是我没有用Java编写应用程序,而是使用ActionScript和Adobe AIR 2.6。
然后问题是如何通过ActionScript摆脱占位符。
答案 0 :(得分:0)
如果您可以使用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);
}
});