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

发布于 2024-11-28 23:41:01 字数 179 浏览 1 评论 0原文

我遇到了与在此处输入链接描述中的问题相同的问题。但我的应用程序不是使用 Java,而是使用 ActionScript 和 Adob​​e AIR 2.6。

那么问题是如何通过 ActionScript 去掉占位符。

I'm having the same problem as in this question in enter link description here. But I'm not doing my application with Java but with ActionScript and Adobe AIR 2.6.

Then the question is how to get rid of the placeholders via ActionScript.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄暮涼年 2024-12-05 23:41:01

如果您可以使用 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);
}
});

If you can use Air3.0, create a native extension, and call a Java function with this code

taken from: 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);
}
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文