原网页地址:http://docs.oracle.com/javafx/2/ui_controls/hyperlink.htm#CIHGADBG
这一章讲述用来将文本转换为超链接的 Hyperlink
组件
Hyperlink
类 是 Labeled 类的另一种形式。
图18-1 展示了默认超链接实现的3中状态
图 18-1 超链接组件的3中状态
创建一个超链接
例 18-1 中展示创建超链接的代码片段
代码语言:javascript复制例18-1 典型的超链接
Hyperlink link = new Hyperlink();
link.setText("http://example.com");
link.setOnAction(new EventHandler() {
@Override
public void handle(ActionEvent e) {
System.out.println("This link is clicked");
}
});
setText
成员方法用来定义 超链接的标题。
因为 Hyperlink 类是Labeled类的一个拓展,你可以为标题设置特定的字体和文字。
setOnAction
方法用来指定超链接点击时的行为。类似于Button的 onAction动作。
例 18-1, 中行为仅限于打印字符串。但是在你的应用里面,你可能想用来实现更常见的任务。
链接本地内容
在图18-2展示应用中从本地目录中渲染图片
图 18-2 显示图片
展示例 18-2的源代码:
例 18-2利用超链接浏览图片
代码语言:javascript复制import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class Main extends Application {
final static String[] imageFiles = new String[]{
"product.png",
"education.png",
"partners.png",
"support.png"
};
final static String[] captions = new String[]{
"Products",
"Education",
"Partners",
"Support"
};
final ImageView selectedImage = new ImageView();
final ScrollPane list = new ScrollPane();
final Hyperlink[] hpls = new Hyperlink[captions.length];
final Image[] images = new Image[imageFiles.length];
public static void main(String[] args) {
Application.launch(args);
}
@Override
public void start(Stage stage) {
Scene scene = new Scene(new Group());
stage.setTitle("Hyperlink Sample");
stage.setWidth(300);
stage.setHeight(200);
selectedImage.setLayoutX(100);
selectedImage.setLayoutY(10);
for (int i = 0; i < captions.length; i ) {
final Hyperlink hpl = hpls[i] = new Hyperlink(captions[i]);
final Image image = images[i] = new Image(
getClass().getResourceAsStream(imageFiles[i])
);
hpl.setOnAction(new EventHandler() {
@Override
public void handle(ActionEvent e) {
selectedImage.setImage(image);
}
});
}
final Button button = new Button("Refresh links");
button.setOnAction(new EventHandler() {
@Override
public void handle(ActionEvent e) {
for (int i = 0; i < captions.length; i ) {
hpls[i].setVisited(false);
selectedImage.setImage(null);
}
}
});
VBox vbox = new VBox();
vbox.getChildren().addAll(hpls);
vbox.getChildren().add(button);
vbox.setSpacing(5);
((Group) scene.getRoot()).getChildren().addAll(vbox, selectedImage);
stage.setScene(scene);
stage.show();
}
}
程序通过for循环创建4个Hyperlink
,用户点击某个链接是将触发此超链接setOnAction方法里定义的行为的动作。
因此图片数组中的对应的图片设置到selectedImage
变量中。当用户点击一个超链接,超链接将显示被访问过。你可以通过调用setVisited
方法来刷新超链接。
例18-3 的代码片段即实现了该任务。
例18-3 刷新超链接
代码语言:javascript复制final Button button = new Button("Refresh links");
button.setOnAction(new EventHandler() {
@Override
public void handle(ActionEvent e) {
for (int i = 0; i < captions.length; i ) {
hpls[i].setVisited(false);
selectedImage.setImage(null);
}
}
});
正如图18-3所示,当点击刷新按钮后,所有的的超链接都被设置为未访问状态。
图18-3 未访问过的超链接
因为Hyperlink
类拓展自Labeled
类,你不仅可以指定标题的文字还为其设置一张图片。下一节的程序将展示既使用标题也使用图片来创建超链接和加载远程html页面。
链接远程内容
在你的JavaFx程序中,通过嵌入WebView
浏览器组件来渲染 HTML内容。WebView
组件提供浏览网页的基本功能。该组件可以渲染网页支持用户和链接的交互也可以执行JavaScript代码。
学习例18-4的源码。它创建了4个带标题和图片的超链接。当点击其中一个超链接时,对应的值作为URL传给镶嵌的浏览器。
例 18-4 加载远程网页
代码语言:javascript复制import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Priority;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class Main extends Application {
final static String[] imageFiles = new String[]{
"product.png",
"education.png",
"partners.png",
"support.png"
};
final static String[] captions = new String[]{
"Products",
"Education",
"Partners",
"Support"
};
final static String[] urls = new String[]{
"http://www.oracle.com/us/products/index.html",
"http://education.oracle.com/",
"http://www.oracle.com/partners/index.html",
"http://www.oracle.com/us/support/index.html"
};
final ImageView selectedImage = new ImageView();
final Hyperlink[] hpls = new Hyperlink[captions.length];
final Image[] images = new Image[imageFiles.length];
public static void main(String[] args){
launch(args);
}
@Override
public void start(Stage stage) {
VBox vbox = new VBox();
Scene scene = new Scene(vbox);
stage.setTitle("Hyperlink Sample");
stage.setWidth(570);
stage.setHeight(550);
selectedImage.setLayoutX(100);
selectedImage.setLayoutY(10);
final WebView browser = new WebView();
final WebEngine webEngine = browser.getEngine();
for (int i = 0; i < captions.length; i ) {
final Hyperlink hpl = hpls[i] = new Hyperlink(captions[i]);
final Image image = images[i] =
new Image(getClass().getResourceAsStream(imageFiles[i]));
hpl.setGraphic(new ImageView (image));
hpl.setFont(Font.font("Arial", 14));
final String url = urls[i];
hpl.setOnAction(new EventHandler() {
@Override
public void handle(ActionEvent e) {
webEngine.load(url);
}
});
}
HBox hbox = new HBox();
hbox.getChildren().addAll(hpls);
vbox.getChildren().addAll(hbox, browser);
VBox.setVgrow(browser, Priority.ALWAYS);
stage.setScene(scene);
stage.show();
}
}
类似例18-2超链接通过for循环进行创建。为超链接设置行为传递给urls数组对应的URL地址给嵌套在浏览器WebEngine
对象。
当编译运行此程序,程序窗体将显示如图18-4的状况。
图18-4 从Oracle 公司网址加载页面