myStyle.cssはCSSを経由して外部の画像を追加する方法
.custom-background {
-fx-padding: 15;
-fx-spacing: 10;
-fx-font-size: 17pt;
-fx-background-image: url("../icons/icon.png"));
-fx-background-size: 22 22;
-fx-background-position: 0 0;
-fx-background-repeat: no-repeat;
}
でMyClass.java
HBox root = new HBox();
Scene scene = new Scene(root, 800, 605);
File f = new File("../themming/style/myStyle.css");
try {
root.getStylesheets().setAll(f.toURI().toURL().toExternalForm());
} catch (MalformedURLException e) {
e.printStackTrace();
}
root.getStyleClass().add("custom-background");
では、次のプロジェクト構造
base_folder
|
|_ MyApp
| |
| |_ src
| |
| |_controllers (Controllers)
| |_MyClass.java
|
|_ themming
|
|_ icons
| |
| |icon.png
|
|_ style (css)
|
|_myStyle.css
をご検討ください他のすべてのスタイルクラスは写真を取得しますイメージとは何か関係がありません。
File f = new File("themming/style/myStyle.css");
File f = new File("../themming/style/myStyle.css");
File f = new File("../../themming/style/myStyle.css");
、さらにはプロジェクトのルートに対して異なる場所にをthemming を置く、ない成功へ:
は、私は可能なURLのすべてのバリエーションを試してみました。
私はこれで何が欠けていますか?私は間違って何をしていますか?
ありがとうございます。
表示されているファイルツリーは 'icon.png'ではありません – Tunaki
残念です。私は質問を編集しました。 –
それでも 'images/icon.png'は表示されません。しかし、いずれの場合でも、 'themming'フォルダはソースフォルダですか?アプリケーションをどのように実行していますか? – Tunaki