我曾多次尝试将jFoenix添加到IntelliJ中,但没有成功。我在youtube上看到了很多视频,也读过来自不同网站的帖子,但都不管用。
我经常在场景生成器8.0.5版中使用jFoenix,但是当我试图在IntelliJ中激活它时,它根本不起作用。以下是我的XML代码:
<?xml version="1.0" encoding="UTF-8"?>
<?import com.jfoenix.controls.JFXButton?>
<?import com.jfoenix.controls.JFXPasswordField?>
<?import com.jfoenix.controls.JFXTextField?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.effect.Bloom?>
<?import javafx.scene.effect.InnerShadow?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane prefHeight="576.0" prefWidth="1050.0" style="-fx-background-color: #20120F;" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controller.SignInController">
<children>
<AnchorPane layoutX="639.0" layoutY="88.0" prefHeight="400.0" prefWidth="350.0" style="-fx-background-color: #9C2B27;">
<children>
<JFXTextField focusColor="#d4af37" layoutX="50.0" layoutY="135.0" prefWidth="250.0" promptText="Username / E-mail" unFocusColor="#c3b7b7" />
<JFXPasswordField focusColor="#d4af37" layoutX="50.0" layoutY="222.0" prefWidth="250.0" promptText="Password" unFocusColor="#c3b7b7" />
<JFXButton layoutX="50.0" layoutY="312.0" prefWidth="250.0" style="-fx-background-color: #E45652;" text="Sign In" textFill="#dad6d6">
<effect>
<Bloom threshold="0.0" />
</effect>
<font>
<Font name="System Bold" size="12.0" />
</font>
</JFXButton>
<Label layoutX="122.0" layoutY="52.0" text="Sign In" textFill="WHITE">
<font>
<Font name="Cambria" size="36.0" />
</font>
<effect>
<InnerShadow />
</effect>
</Label>
</children>
</AnchorPane>
<ImageView fitHeight="576.0" fitWidth="576.0" opacity="0.2" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../../Image/TG_Background.jpg" />
</image>
</ImageView>
<Label layoutX="55.0" layoutY="131.0" text="Don't Have An Account? No Problem Sign Up Now And Enjoy Our Variety Of Features" textAlignment="CENTER" textFill="WHITE">
<font>
<Font name="Cambria" size="30.0" />
</font>
<effect>
<Bloom threshold="0.0" />
</effect>
</Label>
<JFXButton layoutX="212.0" layoutY="266.0" prefHeight="44.0" prefWidth="153.0" style="-fx-background-color: #E45652;" text="Sign Up" textFill="#dad6d6">
<effect>
<Bloom threshold="0.0" />
</effect>
<font>
<Font name="System Bold" size="18.0" />
</font>
</JFXButton>
</children>
</AnchorPane>此外,我尝试使用JAR或Maven依赖项导入jFoenix,当我这样做时,jFoenix库会被IntelliJ识别,但仍然无法运行:

如果有人能帮忙我会很感激的。
发布于 2022-04-21 23:03:15
使用Mavan创建项目,然后在pom.xml文件中添加jfoenix dependency
就像这里:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>prjname</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx</artifactId>
<version>11</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.jfoenix/jfoenix -->
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
<version>9.0.1</version>
</dependency>
</dependencies>
</project>在这个pom.xml文件中添加com.jfoenix、org.openjfx和junit dependency
https://stackoverflow.com/questions/71927455
复制相似问题