1

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

那么问题是如何通过 ActionScript 摆脱占位符。

4

1 回答 1

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);
}
});
于 2011-10-01T12:02:52.007 回答