How do you detect a Retina Display in Java?

Tyler

How can I detect if a user has a retina display in Java? I am already aware of detecting the scale factor using Toolkit.getDefaultToolkit().getDesktopProperty("apple.awt.contentScaleFactor"), but java won't let me convert the returned value into an int. I'm wondering how I can convert that into an int, or another way to detect retina displays.

Elliott Frisch

I would get the value this way -

public static boolean hasRetinaDisplay() {
  Object obj = Toolkit.getDefaultToolkit()
      .getDesktopProperty(
          "apple.awt.contentScaleFactor");
  if (obj instanceof Float) {
    Float f = (Float) obj;
    int scale = f.intValue();
    return (scale == 2); // 1 indicates a regular mac display.
  }
  return false;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to detect Mac retina display in python?

From Dev

How do you turn on/off retina images on a website to inspect the difference?

From Dev

How do I disable retina scaling on JAVA applications?

From Dev

How do you detect an evil merge in git?

From Dev

How do you detect memory limits in JavaScript?

From Dev

How do you detect a double tap drag?

From Dev

How do you detect a VPN or Proxy connection?

From Dev

How do you detect the firware version

From Dev

How do you detect a double tap drag?

From Dev

How can I test retina image substition without retina display?

From Dev

How do you stop MacBook Pro retina from switching to scaled resolution?

From Dev

How to have textureFromNode produce texture for retina display?

From Dev

How to select image for NSStatusItem for regular and retina display?

From Dev

How to select image for NSStatusItem for regular and retina display?

From Dev

How to deal with Iphone 5 retina display check?

From Dev

How to handle image backgrounds for retina display

From Dev

How do you display a QChartView in a Custom Widget?

From Dev

How do you dynamically display images in Django

From Dev

How do you display a literal {{ in Angular 2

From Dev

How do you display POST data with cURL?

From Dev

How do you display wide table?

From Dev

How do you display Calendar's in Java in a human-readable way?

From Dev

How do you use Java GeoTools to add text and display them on JMapFrame's map content?

From Dev

How do you make a slider display information as you slide in JavaScript?

From Dev

How do you Schedule In java?

From Java

How do you detect Credit card type based on number?

From Dev

In Swift, how do you detect which UIControlEvents triggered the action?

From Dev

How do you detect if a SqlConnection's "blocking period" is active?

From Dev

How do you detect when a Polymer page section is showing?

Related Related

  1. 1

    how to detect Mac retina display in python?

  2. 2

    How do you turn on/off retina images on a website to inspect the difference?

  3. 3

    How do I disable retina scaling on JAVA applications?

  4. 4

    How do you detect an evil merge in git?

  5. 5

    How do you detect memory limits in JavaScript?

  6. 6

    How do you detect a double tap drag?

  7. 7

    How do you detect a VPN or Proxy connection?

  8. 8

    How do you detect the firware version

  9. 9

    How do you detect a double tap drag?

  10. 10

    How can I test retina image substition without retina display?

  11. 11

    How do you stop MacBook Pro retina from switching to scaled resolution?

  12. 12

    How to have textureFromNode produce texture for retina display?

  13. 13

    How to select image for NSStatusItem for regular and retina display?

  14. 14

    How to select image for NSStatusItem for regular and retina display?

  15. 15

    How to deal with Iphone 5 retina display check?

  16. 16

    How to handle image backgrounds for retina display

  17. 17

    How do you display a QChartView in a Custom Widget?

  18. 18

    How do you dynamically display images in Django

  19. 19

    How do you display a literal {{ in Angular 2

  20. 20

    How do you display POST data with cURL?

  21. 21

    How do you display wide table?

  22. 22

    How do you display Calendar's in Java in a human-readable way?

  23. 23

    How do you use Java GeoTools to add text and display them on JMapFrame's map content?

  24. 24

    How do you make a slider display information as you slide in JavaScript?

  25. 25

    How do you Schedule In java?

  26. 26

    How do you detect Credit card type based on number?

  27. 27

    In Swift, how do you detect which UIControlEvents triggered the action?

  28. 28

    How do you detect if a SqlConnection's "blocking period" is active?

  29. 29

    How do you detect when a Polymer page section is showing?

HotTag

Archive