1
vote
1answer
32 views

JTree valueChanged event gets called before focusLost of another component on clicking a node

I have a JTree where each node of the tree represents some user data. The data is editable and is stored in a file/db. There are a bunch of JTextField that lets you edit/update the user data for the ...
0
votes
0answers
36 views

Why can't my button gain focus unless I click another button first?

I have 5 buttons on my activity, one of which is a close button to finish() the activity. Clicking it does nothing unless I click one of the other buttons first and then click it. I'm assuming the ...
-1
votes
0answers
31 views

Why the fragment is not working properly? [closed]

I have a menu with fragments. 1 fragment is a barcode scanner fragment. In the onListItemClick for the option coresponding to this fragment i replace the default framelayout with this fragment. The ...
0
votes
0answers
33 views

requestFocus() not working with show() method

I'm making a game where the program has to show one panel, and from that panel show the previous panel, and then show the first panel again. To make things simpler, let's say we have PanelA and PanelB ...
0
votes
1answer
43 views

KeyListener wont focus

I'm new to Java so please forgive me asking for help, but after 4 hours of searching for a solution I'm really getting desperate. I'm currently setting up a game and want to implement key controls. I ...
0
votes
1answer
46 views

Transfer cursor from one JTextField to another on Enter press?

I have one JTextField called Name and one JTextArea called Address. My requirement is when user has entered name in the JTextFieldand pressed enter key the cursor should go to the next text area which ...
0
votes
1answer
40 views

jTextFields requesting focus (if empty after lostFocus) not working

I have 2 jTextFields and both have listeners for a lostFocus event, if the first textfield lost focus and is empty I want it to regain focus,and almost the same for the second field. I tried this: ...
0
votes
1answer
25 views

KeyListener not working

public class KL implements KeyListener { public static void main(String[] args) { final JPopupMenu popup = new JPopupMenu(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); ...
0
votes
0answers
9 views

Oracle Java equivalent/ solution for setSurviveFocusChange

Is there some solution which works without the Netbeans solution but with the standard Oracle Java classes and methods? ...
1
vote
1answer
38 views

How to set automatic focus to Java applet on js

I made an applet. It's starting when web page is loaded. But applet lost focus, when web page lost focus too and need to click on area of applet and then it gained focus. I'm tried variants but it's ...
0
votes
0answers
50 views

Problems with KeyListener and CardLayout, only works the first

I've several JPanels with different Key Listeners in the same CardLayout, but when I change the visible panel, the KeyListener of the next doesn't work. I don't know why, because all my panels are ...
0
votes
0answers
23 views

Java Canvas err focus or action listener in second window

I create 2 Frames: in 1st - I make a Button which move me to 2nd Frame created by class which extends after Canvas and after the move from 1st Frame to 2nd I lose the action listener or focus 1st ...
1
vote
3answers
67 views

Best practice for setting focus to a Swing control in a JPanel

One school of thought says to add a window listener and set focus when the windowOpened event fires: addWindowListener(new WindowAdapter(){ public void windowOpened( WindowEvent e){ ...
0
votes
0answers
31 views

Java set RequestFocus for JtextField on JInternalFrame

I want to set Requestfocus for Textfield placed on JInternalFrame. I already tried few available options. But nothing worked for me so far. txtItemName.requestFocusInWindow (); // did not work ...
0
votes
1answer
83 views

Java requestFocus() not working at the constructor

In my Java Swing Application Reuestfocus method not working at the Constructor. But it works if I used requestfocus along with button action listener. I want set Requestfocus at the form load. I dont ...
0
votes
1answer
33 views

Focusing in different JPanels? (java)

Quick question, I have 3 JPanels, one has a keylistener and it draw my game graphics, and you can alter it by moving your character around, etc. and I have a second JPanel which is just a JTextArea, ...
1
vote
1answer
124 views

Unable to gain focus on JTextField used in JDialog for the second time on linux server

I am using a JDialog with 2 JTextfields and JButtons in it. When Jdialog opens for the first time I have a cursor on my first textfield. Now if I click somewhere outside Jdialog and then try clicking ...
0
votes
1answer
55 views

Java bring application to front (OSX)

I have been searching all over the internet for this, going from stack overflow answer to stack overflow answer, Trying rococoa, or Class.forName ("com.apple.cocoa.application.NSApplication"); amongst ...
0
votes
2answers
99 views

Lose Focus on JTextField when clicking on the panel

I want to lose the focus on a JTextField when the user is clicking on the main panel. setFocusable(true) doens't work for me. If I am clicking on the main panel, the JTextField has still the focus ...
0
votes
0answers
87 views

JSpinner does not transfer focus when pressing Enter

The code bellow was supposed to transfer the focus to the next control after hitting the Enter key at anytime, the event fires but .transferFocus is not transfering the focus, what could be wrong? ...
1
vote
1answer
70 views

How to extend JTextField to generate a defined response to focusgain

I suspect this is a pretty trivial question. I wish to create a component MyTextField which extends JTextField; The component should respond to gaining focus by changing color and respond to losing ...
0
votes
2answers
64 views

Focus on component when a panel is loaded

I have a frame, where i load a panel into. It works fine, but nothing has focus when it loads. Pressing tab doesn't help. I have to use the mouse to press a textfield. I've tried: ...
0
votes
3answers
49 views

JButton getting focused before a JTextField

As you can see, the passwordField is positioned before jButton1 in the navigator, however, when the usernameField is focused, and I press the TAB key, the second element being focused is the ...
0
votes
1answer
44 views

Detecting change of focus on jpanel

I have a JTabbedPane. On this component are four JPanels. On each of those panels there is a scrollPanel. Finally, on each scrollPanel is another JPanel. I need to keep track of which of these final ...
2
votes
1answer
175 views

swing focus issue, lost focus, focusgain not invoked

I have a complex and heavy swing client application which contains many modal compponents, jdialogs, internal frames etc. on some cases, a problem occurs and it is impossible to focus on swing ...
3
votes
1answer
81 views

Focusing a JTextArea in a JTabbedPane

I'm programming a chat client in Java, where I'd like to have one single JDialog for all open chats. So I decided to work with a JTabbedPane where a tab represents a single chat. I put a JPanel into ...
2
votes
2answers
164 views

switching JTextFields by pressing Enter key

I have created number of text fields and I'm wonder how can I switch the focus between the fields by pressing the enter key. In addition, Can I control the Target field ? for example can I defined ...
0
votes
3answers
111 views

Set focus of any application with Java (OSX)?

How can I set the focus (e.g. cmd+tab) of an arbitrary application (Java or not) from a Java program, on OSX? Looking for an answer to this question, I came across this question, but it doesn't ...
1
vote
0answers
40 views

How do I get to access and send I/O-device information, more specifically mouse move and click (press and release), from and to a game-client?

I am currently trying to make a program that will automatically accept a pop-up queue inside a game client. I have managed to get everything to work the way I want when not inside the client. However, ...
0
votes
3answers
137 views

Show keyboard automatically

Please explain me the issue about soft keyboard. For example, I have an EditText on my activity or dialogfragment or fragmentactivity, whatever. here it is: <EditText android:id="@+id/edPswrd" ...
-1
votes
1answer
52 views

Change if any EditText is in focus

In my program i use many EditText dynamically created , and i need to call method each time when any of them get changed (lost focus). is it possible to do such thing ? otherwise how to make on focus ...
1
vote
1answer
76 views

Some components aren't responsive to events

My Event Controller class isn't receiving events from the JColorChooser whenever its chosen color changes, nor is it receiving KeyEvents from the JComponent (The one I'm using to draw the star into). ...
0
votes
1answer
66 views

Stop newly created dialog from taking focus

I'm trying to have Java Swing dialog be created but I don't want to have the dialog to take focus away from whatever is currently focused. So for example, if you're editing a word doc and a different ...
0
votes
1answer
107 views

Gwt check if object has focus [duplicate]

Possible Duplicate: Why is there no isFocused() in GWT? Hi guys is possible check if a specific object has focus ? My problem in my web app is determine which object has focus when i press ...
2
votes
1answer
137 views

Combining 'Excel-like' behavior and updating the model when focus leaves my JTable

I had a request for JTable functionality that would allow data entry more like in Excel. If the user types in a cell, the previous value is replaced by the new value and one can navigate between rows ...
1
vote
2answers
147 views

How to tell if an editText is in focus?

I am connecting to a terminal emulator using a library in android, this connects to a serial device (a switch) and shows me sent/received data. I send data over the connection via a text box below the ...
5
votes
4answers
338 views

Auto-focus on a jButton on a jpanel

I have a JPanel loaded on a JFrame. The JPanel contains 4 JButtons. The thing I am trying to do is to get the focus automatically on the 1st jbutton so that I can traverse between the JButtons with ...
1
vote
1answer
40 views

trying to disable focusable, not working, android

I am connecting to a terminal emulator using a library in android, this connects to a serial device (a switch) and shows me sent/received data. I send data over serial using another library. I send ...
1
vote
1answer
132 views

How do I get “p:focus” to work properly in this simple app (its currently not “focusing” at all)

PROBLEM: The PrimeFaces "p:focus" tag is not focusing. -I.e., when the xhtml page is presented to the user, no input fields are in focus. QUESTION: Why not? How can I get "p:focus" to work ...
2
votes
2answers
230 views

Blocking Swing input without using modal dialog

I want to block input to a window, but still be able to move it. If there was a modal dialog type allowing the window that spawned it to move, then I would be happy. Say I have a window that opens ...
2
votes
2answers
206 views

Java - how do I gain focus on JTextArea when selecting a new JTabbedPane

I have a swing GUI with multiple JTabbedPanes; each tab contains two JButtons at the top, then a JTextArea (for user input), and a JTextField at the bottom for a result. My problem is that I can't ...
0
votes
2answers
54 views

Mantaining focus in application even when it have subwindows

I need to implement a routine that ensure that the application will never lose the focus for others applications (however when it is minimized I shouldn't force it come back). So I decided to ...
0
votes
0answers
49 views

how to set the focus on field

I'm developing an app with a top menu bar composed of a custom HorizontalFieldManager whose fields are custom Bitmap Fileds. Here below the class MyBmpFld and MRIScreen code: import ... public ...
7
votes
2answers
453 views

KeyPressed and mousePressed Event in an unfocused Component

What are several ways of detecting a key stroke without the need of focusing on the component that the event was implemented? Here's my idea on this: Even without focusing on myComponent, upon ...
2
votes
1answer
210 views

Disabling all Keys and Key-Combinations in JAVA

I want to disable the Windows-Key and all Windows-Key + X Combination while my Dialog is Visible. CTRL + SHIFT + ESC and ALT + TAB should be disabled too. Is this possible? I Just want that my ...
1
vote
1answer
284 views

How to make an android camera preview stay focused?

I am quite new to Android, thus the code is not from me since I use it only to learn. The application I want to make has to show a camera preview. I have the preview of the camera on the surface, but ...
1
vote
0answers
185 views

Java listen key events without being in focus

i searched all over stackoverflow and found no good/complete solution to my problem. All i want is that my java app should stay minimized, but still read system key events. a smallest COMPLETE ...
1
vote
0answers
172 views

Java Change Focus Traversal

In my Java application I have changed the default FORWARD_TRAVERSAL_KEYS to be done by ENTER, using the following code: Set<AWTKeyStroke> ftk = new ...
4
votes
1answer
158 views

Modifying a JFrame from within a Listener [duplicate]

Possible Duplicate: How to call setUndecorated() after a frame is made visible? How should I make a JFrame be undecorated when unfocused and decorated when focused? Here's my code: ...
0
votes
2answers
174 views

JTextField focus is not getting on the first click of Tab button

i've done an application with two JTextField with the autocomplete feature the application works fine but On clicking the Tab Button while the mouse pointer is on the first TextField the Mouse focus ...

1 2 3 4 5 6