Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, is there a way to have a window that is "Always on top" regardless if the user switches focus to another application? I've searched the web, and all of the solutions lean to some sort of JNI interface with native bindings. Truly this can't be the only way to do it?.. or is it?

share|improve this question

1 Answer

up vote 58 down vote accepted

Try this method of the Window class:

Window.setAlwaysOnTop(boolean)

It works the same way as the default in the Windows TaskManager: switch to another app but it shows always on top.

This was added in Java 1.5

Sample code:

import javax.swing.JFrame;
import javax.swing.JLabel;

public class Annoying {
    public static void main(String[] args) {
        JFrame frame = new JFrame("Hello!!");

        // Set's the window to be "always on top"
        frame.setAlwaysOnTop( true );

        frame.setLocationByPlatform( true );
        frame.add( new JLabel("  Isn't this annoying?") );
        frame.pack();
        frame.setVisible( true );
    }
}

alt text

Window remains on top even when is not active

share|improve this answer
you would think a simple search for "java application always on top" on would have this answer, but it couldn't find it. Thanks. – Laplie Nov 18 '08 at 14:21
21  
Guess what. Now it does!! :) It brings you here! google.com/search?&q=java+application+always+on+top – OscarRyz Oct 15 '09 at 0:07
This is simple and awesome. I was also looking for something like this, but didn't know they implemented this in Java 1.5. Thanks for posting. – Kushal Corleone Nov 18 '09 at 22:43
1  
Unfortunately this does not work for me when running a full screen application such as a video game. Anyone know of a way to force it to the top in that situation? – Dream Lane May 5 '11 at 21:02
1  
@Dream lane I'd probably ask that as a new question – rogerdpack May 13 '11 at 13:27
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.