WebViewでrequestFocus()を実行しようとすると、ユーザーが最初にコントロールをクリックするまで機能しません。
htmlEditorはこのように焦点を合わせることができるので、これが可能でなければならないことを私は知っています(そして、それはcontenteditable WebViewに基づいていると思います)。
私は「contenteditable」のWebビューを使用して独自の特殊なhtmlEditorをコーディングしていますが、標準のhtmlEditorと同じように焦点を合わせたいと思っています。
これはJavafxの問題であると考えており、すでにJiraに提出していますが、この回避策を誰かが考えられるかどうか疑問に思います。
更新:jiraの発行番号:RT-21695
短いデモストレーションコード:
/* Demo webview */
public class WebViewConteneditableDemo extends Application {
String initialEditview = "<html><head>"
+ "</head><body contenteditable='true'>"
+"</body></html>";
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Webview focus demo");
final WebView editor = new WebView();
Button btn = new Button();
btn.setText("Test Webview focus");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
editor.requestFocus();
}
});
BorderPane root = new BorderPane();
root.setTop(btn);
root.setCenter(editor);
editor.getEngine().loadContent(initialEditview);
primaryStage.setScene(new Scene(root, 500, 450));
primaryStage.show();
}
}