JavaFX 在触摸屏上使 ListView 可滚动

huangapple 未分类评论47阅读模式
英文:

JavaFX make a ListView Scrollable on Touchscreen

问题

我们正在为一台带有触摸屏的Linux一体式电脑开发JavaFX应用程序。

.jar文件可以正常工作,并且一切都可以点击,因为JavaFx会将ClickEvents转换为TouchEvents。唯一的问题是,ListView在初始情况下无法滚动...

如果我将它放在一个ScrollPane中,我可以滚动,但是ScrollPane内部的ListView不会滚动,只有ScrollPane部分会滚动。

有许多可能的解决方法:

  1. 使ListView像ScrollPane一样可以滚动,并删除ScrollPane。

  2. 告诉ScrollPane显示ListItems,而不仅仅滚动面板而不滚动列表。

  3. 将ListView的垂直滚动条变大,并且将增加和减少按钮变大,这样用户就可以直接点击。

我尝试过很多方法,但都没有成功。

这里是一些代码:

列表所在的控制器:

public class AllergenController {
    // ... 这里是你现有的代码 ...
}

然后我创建了一个CSS类并将样式表分配给ListView,但这并没有改变任何东西:

/* JavaFX CSS - 在至少创建一个使用 -fx-属性的规则之前,请保留此注释 */

.mylistview .scroll-bar:vertical {
    -fx-scale-x: 0;
    -fx-min-width: 20px;
    -fx-background-colo: #074cba;
}

.mylistview .increment-button .virtual-flow .scroll-bar:vertical .increment-button,
.mylistview .decrement-button {
    -fx-min-width: 20px;
    -fx-min-height: 50px;
}

FXML代码来自Allergen:

<?xml version="1.0" encoding="UTF-8"?>
<!-- ... 这里是你的FXML代码 ... -->

希望这对你有所帮助,如你所述,这可以通过这三种方式之一来实现(1. 2. 3.)。

英文:

we are developing a JavaFX application for a Linux All In One Pc that has a Touchscreen.

The .jar file works and everything is clickable out of the box because JavaFx translates ClickEvents into TouchEvents. The only problem is with a ListView that is not scrollable out of the box...

If I put it inside a ScrollPane then I can Scroll but the ListView inside the ScrollPane does not scroll only the ScrollPane part scrolls.

There are many possible fixxes on how I could manage this:

  1. Make the ListView scrollable like the ScrollPane is and remove the scrollpane.

  2. Tell the scrollpane to display the ListItems and not to only scroll the pane but the list.

  3. Change the ListView VerticalScrollBar to make it bigger and to make the Inc. and Dec Button bigger so the user can just click on there.

I tried to do everything but with no success.

Here is some code:

The Controller where the list lives:

public class AllergenController {
	private final Rectangle2D RESOLUTION = Screen.getPrimary().getBounds();
	private ObservableList&lt;String&gt; items = FXCollections.observableArrayList();

	@FXML
	private ListView&lt;String&gt; listView;

	@FXML
	private Button btnClose;
	
	private ScrollPane pane;
	
	private double lastYposition = 0;
		
	
	public void initialize() {
		
//		listView.setStyle(&quot;-fx-min-width: 20; -fx-background-colo: #074cba;&quot;);
		
//		listView.getStylesheets().addAll(this.getClass().getResource(&quot;application.css&quot;).toExternalForm());
		
		
		
//		pane.setFitToWidth(true);
		
//	     listView.setOnMousePressed(new EventHandler&lt;MouseEvent&gt;() {
//	         @Override
//	         public void handle(MouseEvent event) {
//	             lastYposition = event.getSceneY();
//	         }
//	     });
//
//	     listView.setOnMouseDragged(new EventHandler&lt;MouseEvent&gt;() {
//	         @Override
//	         public void handle(MouseEvent event) {
//	             double newYposition = event.getSceneY();
//	             double diff = newYposition - lastYposition;
//	             lastYposition = newYposition;
//	             CustomScrollEvent cse = new CustomScrollEvent();
//	             cse.fireVerticalScroll((int)diff, this, (EventTarget) event.getSource());
//	         }
//	     });  
//		
		
//		ScrollListener scrollListener = new ScrollListener(listView);
//		scrollListener.enable();
	    
		
		listView.setItems(items);
		listView.setSelectionModel(new NoSelectionModel&lt;String&gt;());
		listView.setPrefSize(RESOLUTION.getWidth(), RESOLUTION.getHeight());
//		pane.setPrefSize(RESOLUTION.getWidth(), RESOLUTION.getHeight());
		listView.setStyle(&quot;-fx-font-size: 3em; -fx-alignment: center;&quot;);
		
		// Allergene
		items.add(&quot;Allergenliste: &quot;);
		items.add(&quot;1 - Gluten und Erzeugnisse&quot;);
		items.add(&quot;2 - Krebstiere und Erzeugnisse&quot;);
		items.add(&quot;3 - Eier von Gefl\u00fcgel und Erzeugnisse&quot;);
		items.add(&quot;4 - Fisch und Erzeugnisse (Ausser Fischgelatine)&quot;);
		items.add(&quot;5 - Erdn\u00fcsse und Erzeugnisse&quot;);
		items.add(&quot;6 - Sojabohnen und Erzeugnisse&quot;);
		items.add(&quot;7 - Milch (Laktose) und Erzeugnisse&quot;);
		items.add(&quot;8 - Schalenfr\u00fcchte und Erzeugnisse&quot;);
		items.add(&quot;9 - Sellerie und Erzeugnisse&quot;);
		items.add(&quot;10 - Senf und Erzeugnisse&quot;);
		items.add(&quot;11 - Sesamsamen und Erzeugnisse&quot;);
		items.add(&quot;12 - Schwefeldioxid und Erzeugnisse&quot;);
		items.add(&quot;13 - Lupinen und Erzeugnisse&quot;);
		items.add(&quot;14 - Weichtiere und Erzeugnisse (Schnecken, Muscheln, Tintenfische etc.)&quot;);
		items.add(&quot;V - Vegetarisch&quot;);
		items.add(&quot;VV - Vegan&quot;);
		items.add(&quot;SF - Schweinefleisch&quot;);

		// Zusatzstoffe nach E-Nummern sortiert!
		items.add(&quot;\n&quot;);
		items.add(&quot;Zusatzstoffliste nach E-Nummern sortiert: &quot;);
		items.add(&quot;E 100 - Kurkumin&quot;);
		items.add(&quot;E 101 - Riboflavin (Riboflavin-5&#39;-Phosphat)&quot;);
		items.add(&quot;E 102 - Tartrazin&quot;);
		items.add(&quot;E 104 - Chinolingelb&quot;);
		items.add(&quot;E 110 - Gelborange S&quot;);
		items.add(&quot;E 120 - Echtes Karmin&quot;);
		items.add(&quot;E 122 - Azorubin&quot;);
		items.add(&quot;E 123 - Amaranth&quot;);
		items.add(&quot;E 124 - Cochenillerot&quot;);
		items.add(&quot;E 127 - Erythrosin&quot;);
		items.add(&quot;E 129 - Allurarot AC&quot;);
		items.add(&quot;E 131 - Patentblau V&quot;);
		items.add(&quot;E 132 - Indigotin I&quot;);
		items.add(&quot;E 133 - Brilliantblau FCF&quot;);
		items.add(&quot;E 140 - Chlorophylle, Chlorophylline&quot;);
		items.add(&quot;E 141 - Kupferkomplexe der Chlorophylle&quot;);
		items.add(&quot;E 142 - Gr\u00fcn S&quot;);
		items.add(&quot;E 150a-d - Zuckerkul\u00f6r&quot;);
		items.add(&quot;E 151 - Brilliantschwarz BN&quot;);
		items.add(&quot;E 153 - Pflanzenkohle&quot;);
		items.add(&quot;E 155 - Braun HT&quot;);
		items.add(&quot;E 160a-f - Carotin und Carotinoide(a)&quot;);
		items.add(&quot;E 160b - Annatto (Bixin,Norbixin)&quot;);
		items.add(&quot;E 160c - Paprikaextrakt&quot;);
		items.add(&quot;E 160d - Lycopin&quot;);
		items.add(&quot;E 160e - Beta-apo-8&#39;-Carotinal&quot;);
		items.add(&quot;E 161b - Lutein&quot;);
		items.add(&quot;E 161g - Canthaxanthin&quot;);
		items.add(&quot;E 162 - Beetenrot, Betanin&quot;);
		items.add(&quot;E 163 - Anthocyane&quot;);
...

  }
}

Ignore the commented code it was some tries I had before.

then I made a Css class and assigned the StyleSheet inside the ListView but that did not change anything:

/* JavaFX CSS - Leave this comment until you have at least create one rule which uses -fx-Property */


.mylistview .scroll-bar:vertical {
	 -fx-scale-x: 0;
	-fx-min-width: 20px;
	-fx-background-colo: #074cba;
}

.mylistview .increment-button .virtual-flow .scroll-bar:vertical .increment-button , .mylistview .decrement-button {
	-fx-min-width: 20px;
	-fx-min-height: 50px;
}

JavaFX 在触摸屏上使 ListView 可滚动

Here is the FXML Code from the Allergen:

&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;

&lt;?import java.lang.String?&gt;
&lt;?import javafx.geometry.Insets?&gt;
&lt;?import javafx.scene.control.ListView?&gt;
&lt;?import javafx.scene.control.ScrollPane?&gt;
&lt;?import javafx.scene.image.Image?&gt;
&lt;?import javafx.scene.image.ImageView?&gt;
&lt;?import javafx.scene.layout.BorderPane?&gt;
&lt;?import javafx.scene.layout.HBox?&gt;
&lt;?import javafx.scene.text.Font?&gt;
&lt;?import javafx.scene.text.Text?&gt;

&lt;BorderPane style=&quot;-fx-background-color: #fff;&quot; xmlns=&quot;http://javafx.com/javafx/11.0.1&quot; xmlns:fx=&quot;http://javafx.com/fxml/1&quot; fx:controller=&quot;KMS.AllergenController&quot;&gt;
   &lt;top&gt;
      &lt;HBox alignment=&quot;CENTER&quot; prefHeight=&quot;100.0&quot; prefWidth=&quot;200.0&quot; spacing=&quot;10.0&quot; BorderPane.alignment=&quot;CENTER&quot;&gt;
         &lt;children&gt;
            &lt;Text strokeType=&quot;OUTSIDE&quot; strokeWidth=&quot;0.0&quot; text=&quot;Kantinen Management System by&quot; textAlignment=&quot;CENTER&quot;&gt;
               &lt;font&gt;
                  &lt;Font size=&quot;24.0&quot; /&gt;
               &lt;/font&gt;
            &lt;/Text&gt;
            &lt;ImageView fitHeight=&quot;50.0&quot; fitWidth=&quot;90.0&quot; pickOnBounds=&quot;true&quot; preserveRatio=&quot;true&quot;&gt;
               &lt;image&gt;
                  &lt;Image url=&quot;@../images/ThiesenSWChanged.png&quot; /&gt;
               &lt;/image&gt;
            &lt;/ImageView&gt;
         &lt;/children&gt;
         &lt;padding&gt;
            &lt;Insets bottom=&quot;10.0&quot; left=&quot;10.0&quot; right=&quot;10.0&quot; top=&quot;10.0&quot; /&gt;
         &lt;/padding&gt;
      &lt;/HBox&gt;
   &lt;/top&gt;
   &lt;center&gt;
      &lt;ScrollPane fx:id=&quot;pane&quot; hbarPolicy=&quot;NEVER&quot; vbarPolicy=&quot;NEVER&quot;&gt;
         &lt;content&gt;
            &lt;ListView fx:id=&quot;listView&quot; focusTraversable=&quot;false&quot; style=&quot;-fx-background-color: #fff;&quot; stylesheets=&quot;@../src/KMS/application.css&quot;&gt;
               &lt;styleClass&gt;
                  &lt;String fx:value=&quot;scroll-bar&quot; /&gt;
                  &lt;String fx:value=&quot;decrement-button&quot; /&gt;
                  &lt;String fx:value=&quot;increment-button&quot; /&gt;
               &lt;/styleClass&gt;
            &lt;/ListView&gt;
         &lt;/content&gt;
      &lt;/ScrollPane&gt;
   &lt;/center&gt;
&lt;/BorderPane&gt;

I hope someone can help me :/ like I said it can be done by one of the 3 Ways (1. 2. 3.).

Thanks ~Faded.

huangapple
  • 本文由 发表于 2020年7月23日 18:10:39
  • 转载请务必保留本文链接:https://java.coder-hub.com/63051832.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定