AIR:Android文件删除在Gallery中留下空占位符

时间:2011-08-12 05:09:19

标签: android mobile air gallery air-android

我遇到的问题与enter link description here中的问题相同。但是我没有用Java编写应用程序,而是使用ActionScript和Adobe AIR 2.6。

然后问题是如何通过ActionScript摆脱占位符。

1 个答案:

答案 0 :(得分:0)

如果您可以使用Air3.0,请创建本机扩展,并使用此代码调用Java函数

取自:http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.html

// 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);
}
});