Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Code Snippet

Ben Lau edited this page Jan 21, 2017 · 2 revisions

Obtain Context.getExternalFilesDir

QAndroidJniObject activity = QAndroidJniObject::callStaticObjectMethod("org/qtproject/qt5/android/QtNative", "activity", "()Landroid/app/Activity;");
QAndroidJniObject context = activity.callObjectMethod("getBaseContext","()Landroid/content/Context;");
QAndroidJniObject file = context.callObjectMethod("getExternalFilesDir","(Ljava/lang/String;)Ljava/io/File;",0);
QAndroidJniObject absolutePath = file.callObjectMethod("getAbsolutePath","()Ljava/lang/String;");
Clone this wiki locally