1

ここにリンクの説明を入力して、この質問と同じ問題が発生しています。しかし、私はJavaではなく、ActionScriptとAdobeAIR2.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 に答える