3

サンプルコードは次のとおりです。

package com.javafxportslistviewdemo;

import com.gluonhq.charm.down.Platform;
import com.gluonhq.charm.down.Services;
import com.gluonhq.charm.down.plugins.LifecycleEvent;
import com.gluonhq.charm.down.plugins.LifecycleService;
import javafx.application.Application;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.geometry.Rectangle2D;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.input.KeyCode;
import javafx.scene.input.KeyEvent;
import javafx.scene.layout.VBox;
import javafx.stage.Screen;

import javafx.stage.Stage;

public class JavaFXPortsListViewDemo extends Application {

    @Override
    public void init() {
    }

    @Override
    public void start(Stage primaryStage) throws Exception {
        Screen primaryScreen = Screen.getPrimary();
        Rectangle2D visualBounds = primaryScreen.getVisualBounds();
        double width = visualBounds.getWidth();
        double height = visualBounds.getHeight();

        Label label = new Label("Here is selected item...");

        ListView<String> listView = new ListView<>();
        ObservableList<String> items = FXCollections.observableArrayList(
                "one", "two", "three", "four");
        listView.setItems(items);
        listView.getSelectionModel().selectedItemProperty().addListener((ObservableValue<? extends String> ov, String old_val, String new_val) -> {
            label.setText(new_val);
        });

        VBox root = new VBox();
        root.getChildren().addAll(label, listView);

        Scene scene = new Scene(root, width, height);

        Services.get(LifecycleService.class).ifPresent(ls -> {
            ls.addListener(LifecycleEvent.PAUSE, () -> onPause());
            ls.addListener(LifecycleEvent.RESUME, () -> onResume());
        });

        scene.addEventHandler(KeyEvent.KEY_RELEASED, e -> {
            if (KeyCode.ESCAPE.equals(e.getCode())) {
                if (Platform.isAndroid()) {
                    // bring up the menu or other Android stuff
                    Services.get(LifecycleService.class).ifPresent(LifecycleService::shutdown);
                } else {
                    // bring up the menu or other Desktop stuff
                    Services.get(LifecycleService.class).ifPresent(LifecycleService::shutdown);
                }
            }
        });

        primaryStage.setScene(scene);
        primaryStage.show();
    }

    private void onPause() {
    }

    private void onResume() {
    }
}

開発環境: JavaFXPorts 8.60.8、javafxmobile-plugin 1.1.0、Gluon Plugin 2.4.0、NetBeans 8.1、Windows 10 Pro、64 ビット

テスト環境: Android デバイス Samsung Galaxy A5 2016、Android 6.0.1

再現手順: 1. JavaFXPorts 8.60.8、javafxmobile-plugin 1.1.0、Gluon Plugin 2.4.0 を使用してサンプル コードをビルドします。2. Android デバイス (Android 6.0.1) にサンプルをインストールして実行します。3. ListView をタッチし、ListView から任意の項目を選択 - 項目が選択されていない -> バグ

JavaFXPorts の問題トラッカーのバグを追加: JavaFXPorts の問題

4

1 に答える 1