I tried to make a simple application to create a keyboard with tab and enter function to select textfield and button. when using the tab key from the keyboard the selection of textfield runs fine but with the program not running. I use AWTRobot
anyone can help me
When you press the Tab Button in your app, you are assigning focus to that the Tab Button. Then the app programmatically presses the Tab key which has the effect of assigning focus to the next View in your Layout. This is the Enter Button.
If you just want to assign focus to the next View, you should use the internal methods for that like
When you press the Tab Button in your app, you are assigning focus to that the Tab Button. Then the app programmatically presses the Tab key which has the effect of assigning focus to the next View in your Layout. This is the Enter Button.
If you just want to assign focus to the next View, you should use the internal methods for that like