Acknowledged

Instinct E 40mm screen size discrepancy

In the simulator version 7.4.3,  for the Instinct E 40mm, deviceSettings.screenHeight and screenWidth return 166, but the simulator screen is 164x164 pixels.

Parents
  • A watchface type app.

    If you run your cursor to the edge of the display, you will see the highest x&y co-ordinates reported as 163.

    IF you draw:

            dc.setColor(Graphics.COLOR_WHITE,Graphics.COLOR_TRANSPARENT);
            dc.drawRectangle(0,0,164,164);
    the whole square is displayed.
    but if you draw:
            dc.setColor(Graphics.COLOR_WHITE,Graphics.COLOR_TRANSPARENT);
            dc.drawRectangle(0,0,165,165);
    the left and right sides of the square get clipped.
Comment
  • A watchface type app.

    If you run your cursor to the edge of the display, you will see the highest x&y co-ordinates reported as 163.

    IF you draw:

            dc.setColor(Graphics.COLOR_WHITE,Graphics.COLOR_TRANSPARENT);
            dc.drawRectangle(0,0,164,164);
    the whole square is displayed.
    but if you draw:
            dc.setColor(Graphics.COLOR_WHITE,Graphics.COLOR_TRANSPARENT);
            dc.drawRectangle(0,0,165,165);
    the left and right sides of the square get clipped.
Children