图像选择器javafx android mobile

问题描述 投票:0回答:1

如何从

javafxmobile-plugin
中的android目录/图库中选择图像。我无法在 Android 设备中选择像
images
这样的文件。当我打开目录时,应用程序挂起并突然关闭。有什么帮助吗???

我已经在 Android 设备中尝试使用 javafx

file chooser
&&
directory choose
但没有任何帮助。我还发现
stackoverflow

上没有任何有用的帖子

我的

build.gradle
文件:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'org.javafxports:jfxmobile-plugin:1.3.16'
    }
}

apply plugin: 'org.javafxports.jfxmobile'

repositories {
    jcenter()
    maven {
        url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
    }
}

mainClassName = 'com.maqboolsolutions.directorychooserandroid.App'

ext.CHARM_DOWN_VERSION = "1.0.0"

dependencies { 
    compile "com.gluonhq:charm-down-common:$CHARM_DOWN_VERSION"
    desktopRuntime "com.gluonhq:charm-down-desktop:$CHARM_DOWN_VERSION"
    androidRuntime "com.gluonhq:charm-down-android:$CHARM_DOWN_VERSION"

    compile 'com.airhacks:afterburner.mfx:1.6.3'
}

jfxmobile {
    javafxportsVersion = '8.60.11'

    android {
        manifest = 'src/android/AndroidManifest.xml'

        packagingOptions {
            exclude 'META-INF/INDEX.LIST'
        }

        dexOptions {
            javaMaxHeapSize "4g"
        }
    }
}

.java
编码:

@FXML
private void btnCooserOnAction(ActionEvent event) {
    DirectoryChooser directoryChooser = new DirectoryChooser();

    Stage primaryStage = (Stage) stackPaneRoot.getScene().getWindow();

    File selectedDirectory = directoryChooser.showDialog(primaryStage);

    if (selectedDirectory == null) {
        lblPath.setText("No Directory selected");
    } else {
        lblPath.setText(selectedDirectory.getAbsolutePath());
    }
}

应用程序没有响应。并关闭...

java android javafx gluon-mobile javafxports
1个回答
0
投票

经过一番挖掘并基于 @josé-pereda 的有用评论,这里为任何重新审视类似问题的人提供了更新的最终答案,尽管 JavaFX Mobile 和 Charm Down for JDK 1.8 已被弃用多年。虽然 GluonFX 是推荐的现代替代品(通过 GraalVM 支持 Java 11+),但对于那些仍然依赖旧设置的人来说,这是一个解决方案。


要点:

  1. Charm Down 插件:Charm Down 插件是开源的,可以独立于 Gluon Mobile 使用。例如,您可以使用
    PicturesService
    插件访问图库或拍照,而无需付费的 Gluon Mobile 许可证(仅删除免费版本中的导航屏幕)。
  2. 更新的库:使用 Charm Down v3.8.6(不是旧的 1.x 版本)。它提供了更好的兼容性和稳定性:

Gradle 设置示例:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'org.javafxports:jfxmobile-plugin:1.3.18'
    }
}

apply plugin: 'org.javafxports.jfxmobile'

repositories {
    jcenter()
    maven {
        url 'https://nexus.gluonhq.com/nexus/content/repositories/releases'
    }
}

mainClassName = 'org.javafxports.hellofx.App'

dependencies {
//    compile 'com.gluonhq:charm-down-plugin-pictures-android:3.8.6'
    compile 'org.lsposed.hiddenapibypass:hiddenapibypass:4.3'
}

jfxmobile {
    downConfig {
        version = '3.8.6'
        plugins 'display', 'lifecycle', 'statusbar', 'storage', 'pictures'
    }

    android {
        manifest = 'src/android/AndroidManifest.xml'
        compileSdkVersion '35'
        buildToolsVersion '35.0.0'

        dexOptions {
            incremental true
            javaMaxHeapSize "7g"
        }
    }
}

project.afterEvaluate {
    explodeAarDependencies(project.configurations.androidCompile)
    explodeAarDependencies(project.configurations.compile)
}

图片选择的实现示例:

App.java

public class App extends Application {

    static {
        if (Platform.isAndroid()) {
            HiddenApiBypass.addHiddenApiExemptions("L");
        }
    }

    @Override
    public void start(Stage primaryStage) throws IOException {
        FXMLLoader loader = new FXMLLoader(getClass().getResource("/org/javafxports/hellofx/main.fxml"));
        Parent root = loader.load();

        Scene scene;
        if (Platform.isDesktop()) {
            scene = new Scene(root);
        } else {
            Rectangle2D visualBounds = Screen.getPrimary().getVisualBounds();
            scene = new Scene(root, visualBounds.getWidth(), visualBounds.getHeight());
        }

        primaryStage.setTitle("JavaFX 8 with FXML");
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

MainController.java:

public class MainController {

    @FXML
    private ImageView imageView;

    @FXML
    void btnLoadOnAction(ActionEvent event) {
        if (Platform.isDesktop()) {
            try {
                FileChooser fileChooser = new FileChooser();
                fileChooser.setTitle("Select an Image");

                fileChooser.getExtensionFilters().addAll(
                        new FileChooser.ExtensionFilter("Image Files", "*.png", "*.jpg", "*.jpeg", "*.gif")
                );

                File selectedFile = fileChooser.showOpenDialog(null);

                if (selectedFile != null) {
                    Image image = new Image(selectedFile.toURI().toString());
                    imageView.setImage(image);
                }
            } catch (Exception ex) {
                Logger.getLogger(getClass().getName()).log(Level.SEVERE, null, ex);
            }
        } else if (Platform.isAndroid()) {
            Services.get(PicturesService.class).ifPresent(service ->
                    service.loadImageFromGallery().ifPresent(image ->
                            imageView.setImage(image)));

//            Services.get(PicturesService.class).ifPresent(service ->
//                    service.takePhoto(true).ifPresent(image ->
//                            imageView.setImage(image)));
        }
    }

    @FXML
    void initialize() {
    }
}

AndroidManifest.xml:

<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="org.javafxports.hellofx"
          android:versionCode="1"
          android:versionName="1.0">

    <uses-sdk
            android:minSdkVersion="21"
            android:targetSdkVersion="35"/>

    <supports-screens android:xlargeScreens="true"/>

    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.CAMERA"/>

    <application
            android:label="HelloFX"
            android:name="android.support.multidex.MultiDexApplication"
            android:icon="@mipmap/ic_launcher"
            android:requestLegacyExternalStorage="true">

        <activity
                android:name="javafxports.android.FXActivity"
                android:label="HelloFX"
                android:configChanges="orientation|screenSize"
                android:exported="true">

            <meta-data
                    android:name="main.class"
                    android:value="org.javafxports.hellofx.App"/>
            <meta-data
                    android:name="debug.port"
                    android:value="0"/>

            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>

        </activity>

        <activity android:name="com.gluonhq.impl.charm.down.plugins.android.PermissionRequestActivity"/>

        <provider
                android:name="android.support.v4.content.FileProvider"
                android:authorities="org.javafxports.hellofx.fileprovider"
                android:exported="false"
                android:grantUriPermissions="true">

            <meta-data
                    android:name="android.support.FILE_PROVIDER_PATHS"
                    android:resource="@xml/file_provider_paths"/>

        </provider>

    </application>
</manifest>

xml/file_provider_paths.xml

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path name="external_files" path="."/>
</paths>

总结:

在 JavaFX/JavaFXPorts 项目中使用 Charm Down

PicturesService
允许图像选择和相机集成。这完全避免了对 Gluon Mobile 的需要。然而,对于现代 Java (11+),我强烈建议过渡到 GluonFX,它很强大、维护积极,并且与 GraalVM 集成良好。

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.