I want to create a onscreen keyboard such that when a text field gets focused the keyboard appears on the screen and when the focus is lost or if one clicks outside the screen the keyboard should disappear.
This is not the problem, the problem is that i'm not sure what I should use to create such a keyboard. I cannot use a jFrame
because if I click outside the keyboard window then the keyboard goes to the background and is not closed. I also can't use jDialog
because it do not allow us to click outside the window.
また、キーボードで入力した内容をリアルタイムでテキストボックスに表示できるようにしたいと思います(画面上のキーボードのキーをクリックすると、テキストボックスに表示されるはずです)。私はこのプログラムを netbeans で実行しているので、覚えておいていただけると助かります。