Questions tagged [screens]

Screen is a display, or a monitor. A device that is meant to show some information, in both textual and pictorial forms.

Screen is a display, or a monitor. A device that is meant to show some information, in both textual and pictorial forms.

86 questions
2
votes
1 answer

Creating a multi-screen application using Qt Designer

I'm using Qt Designer to create UI designs which I'm then converting into python code. Since I'm quite new to Qt I'd like to ask: is there a way I could implement a multi-screen application? I.e. having a next button clicked and getting a new set of…
marcalan
  • 21
  • 2
2
votes
4 answers

How to detect round screen on Android Wear - onApplyWindowInsets not called on device

I have implemented the onApplyWindowInsets callback in an Android Wear project. In the method, it calls isRound() to determine if the code is running on a round or rectangular Wear smartwatch. This callback is called from the round wear emulator.…
WillT
  • 21
  • 1
  • 5
2
votes
1 answer

Android Text Sizes for different screens

Hey I know there's a lot of questions pertaining to this topic, I just need some clarification. I'm trying to get my app to look as closely the same on all device sizes. I use 'sp' as the type of value for "textSize", but it doesn't seem to do…
2
votes
1 answer

Moving to another screen not working

I am developing and using Android Studio. I have a screen that uses a calendar to get a date from users input. The trouble as soon as I added the code to this, my button to move to another screen has stopped working. I have spent a few hours on…
user2029541
  • 666
  • 3
  • 12
  • 22
2
votes
0 answers

How to record screens navigation in android?

I am developing an application which captures screenshots and records the screens as video, without rooting the device. I tried the ASL Demo which is given in the following link http://code.google.com/p/android-screenshot-library/ It's working only…
1
vote
2 answers

Java Game State Management

Does anyone have a good State Manager tutorial in Java? I have been looking into this for the past couple of days and anything that I come across doesn't seem to work in the correct fashion for what I need it to do. I need it to be able to take user…
x3zinja12
  • 21
  • 1
  • 1
  • 5
1
vote
5 answers

Best way to show screens to user on application

I'm developing a Winforms application which has been running for years with an explorer view (TreeView left, screen right). I means that: All the screens have an hierarchy organization All the nodes on TreeView have one and only one screen…
FerranB
  • 35,683
  • 18
  • 66
  • 85
1
vote
4 answers

Automatically opening pages on different monitors

I am designing an emergency response page, which needs to display information across 3 different monitors. The first monitor will gather information about the caller, and then contain 2 links. The first link needs to display a different web page on…
Daniel H
  • 2,865
  • 8
  • 34
  • 32
1
vote
2 answers

Center C# form on secondary screen

Quick question, hopefully an easy fix. I am kinda new to C# and am trying to center a second form, on the secondary screen when it opens. So far I can get it to open on the second screen no problem but it sits in the top left and I cant get it to…
Jambery
  • 13
  • 2
1
vote
1 answer

Kivy widget in python to kv file, how control it

i have a simple test program: main.py from kivy.app import App from kivy.uix.button import Button from kivy.uix.screenmanager import Screen from kivy.clock import mainthread class TestScreen(Screen): @mainthread def on_pre_enter(self): #Is…
TryTrystMy
  • 73
  • 1
  • 1
  • 10
1
vote
1 answer

Android dimens file for multiple screens

I am new to working with multiple screens and need help with the following: I have 2 devices: Samsung S4 display class: normal smallest width: 360dp resolution: 1080 * 1920 Density class: XXHDPI Density: 442dpi Samsung Tablet: display class:…
Jehanzeib
  • 25
  • 6
1
vote
2 answers

How to implement multiple screens within an App

I am currently working on an Android App which has different service dimensions, such as " service order", "route planning", "photo gallery" and a central login. so far i implemented each "screen" (and by screen i mean actually the layout of a…
Peter
  • 11
  • 2
1
vote
0 answers

Java awt GraphicsDevice TYPE_PRINTER?

Not that I absolutely need this answered for something, but I'm curious as to why there's a TYPE_PRINTER for a java.awt.GraphicsDevice. I'm assuming that's referring to a printer like for printing paper as the javadoc just says "Device is a…
Slayer0248
  • 1,231
  • 3
  • 15
  • 26
1
vote
1 answer

Android XML resize / fit ImageButton different screens

I made ImageButton menu design in the hopes that its size can adjust the screen: but after I test using with smartphone 3-inch 320x480 , 4-inch 480x800, 5-inch 720x1280, view ImageButton is mess. I've tried using TableLayout, LinearLayout,…
Johan
  • 55
  • 2
  • 8
1
vote
1 answer

Kivy (Python) Problems with formatting

I'm having trouble formatting these Ellipses so that they appear in the center of the screen. I've tried everything I can think of to an avail. The Button I've written in the Kivy language goes to the corner of the monitor like it's meant to but…
RMass
  • 177
  • 1
  • 2
  • 14