Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

64
votes
13answers
1k views

Is it bad to work with pixels in CSS?

Is it bad in terms of compatibility to use pixel numbers in CSS instead of percentages? How about lower resolutions? Is it okay to work with them in ranges of 1-100?
19
votes
8answers
9k views

How to accommodate for the iPhone 4 screen resolution?

This is a programming question! Read on before you vote to close! According to Apple, the iPhone 4 has a new and better screen resolution: 3.5-inch (diagonal) widescreen Multi-Touch display ...
17
votes
6answers
2k views

Multiple screen resolutions/aspect ratios (games)

EDIT: Thanks for all your answers and comments. After thinking about it i would rephrase the core of the question to: "How to determine and limit the minimum resolution/ratio my game is able to run ...
17
votes
5answers
2k views

Strategies for Handling Multiple Screen Resolutions and Aspect Ratios in Web Development

Back in the day, 800 x 600 was the screen resolution to design for - and maybe 640 x 480. Then along came 1024 x 768, etc, etc, etc. But then it gets worse: now we have not only different ...
13
votes
5answers
589 views

Target only high-resolution (pixels) devices on Android Market

I want to publish an application that specifically runs only on 800x480 or higher screens. I don't want users with 480x320, 320x240 etc devices to get it from Android Market. How do I configure it? ...
10
votes
1answer
320 views

Distinguish between panning and normal screen modes in code - Windows

I am writing a full-screen 3D game and I have created a menu in which the user may select the screen resolution to match his hardware capacity. I am enumerating all the available screen modes with ...
9
votes
2answers
1k views

How do I convert Twips to Pixels in .NET?

I'm working on a migration project in which a database actually stores display sizes in twips. Since I can't use twips to assign sizes to WPF or Winforms controls, I was wondering if .NET has a ...
8
votes
2answers
4k views

Resolution independence in Android SurfaceView

I am currently starting a game engine in Android, first forray onto the platform and have the basics in place however i am unsure of the best way to approach resolution independence when using ...
7
votes
4answers
2k views

Android: Showing wrong screen resolution

I was trying to get the screen resolution of android phones,using this code DisplayMetrics dm = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(dm); str_ScreenSize ...
7
votes
2answers
448 views

Can I detect the display size/resolution in Emacs?

I'd like to change the window/frame size of my XEmacs based on the current display resolution. This is useful when I run my laptop either by itself or attached to a docking station with an external ...
7
votes
4answers
8k views

C#: Get complete desktop size?

How do I find out the size of the entire desktop? Not the "working area" and not the "screen resolution", both of which refer to only one screen. I want to find out the total width and height of the ...
6
votes
4answers
874 views

Only use XHDPI drawables in Android app?

If you're planning to support LDPI, MDPI, HPDI, and perhaps XHDPI in the near future, is it ok to only include XHDPI drawables in the project and let the devices scale them to their desired ...
6
votes
3answers
1k views

Minimum screen resolution for Android devices

Please, what is the device with the minimum screen resolution on the market?
6
votes
4answers
3k views

How to programmatically get the resolution of a window and that of the system in Linux?

I'm trying to get the resolution of the screen as well as the resolution of a specific window (in which a program is running) on Linux system. I don't need to modify the resolution, I only need the ...
5
votes
3answers
231 views

Detect screen resolution change made by user (Java Listener?)

I have a Java app that launches, creates a GUI and works great. If the user changes the screen resolution (switches from 1440x900 to 1280x768), I'd like to be able to listen for that event. Any ...
5
votes
4answers
367 views

Getting custom DPI percentage in Delphi

Trying to my Delphi 2010 application more user freindly in high DPI modes in Windows 7 I have been trying several methods to retrive PixelsPerInch and compare to 96. Alas, no matter what I tried I ...
5
votes
5answers
1k views

How to support all the different resolutions of android products

All the different resolutions of the different Android products are driving me nuts. My first android app that I wrote was designed so it supported the three commonly used resolutions: 240x320 ...
5
votes
2answers
3k views

Switch android x86 screen resolution

I would like to use Android-x86 2.2 as an emulator on my Windows 7. I have downloaded VirtualBox and the ISO, and I've made a virtual machine with it, but I can't set the resolution to 320x480 or ...
5
votes
3answers
2k views

How to detect the screen resolution with JavaScript?

Is there a way that works for all browsers?
5
votes
1answer
3k views

Objective C - how to get current screen resolution?

is there any way to get the users screen resolution with objective c? Thanks. Solution: int width = [[NSScreen mainScreen] frame].size.width; int height = [[NSScreen mainScreen] frame].size.height; ...
4
votes
5answers
167 views

How to detect in jquery if screen resolution changes?

How can I make it so that each time when user changes the screen resolution size [not the browser window], the page perform a function?
4
votes
5answers
1k views

Android: drawable resolutions

I've been through this post (and others) as well as through the documentation about supporting different screen resolutions in Android, but I couldn't find a clear answer to a (simple) question: Is ...
4
votes
4answers
1k views

Windows Phone 7 target display resolution - recommendations?

The official WP7 emulator uses 800x480 resolution. The only info I can find on planned WP7 phones (eg Samsung Cetus i917) share the same resolution. While I realise the appeal of writing ...
4
votes
3answers
2k views

Handling different screen resolutions for background images in Android?

My Android app (a text-based games) uses background images a lot in order to provide a better visual ambience. For example, if the action in the game takes you into a tavern, then you get a background ...
4
votes
7answers
263 views

Screen Resolutions

I am testing an application and need to test it with different screen resolutions with windows form applications. What is the common resolution tested for now days?
4
votes
1answer
1k views

How to determine height of the Display on Blackberry touch devices?

I trying to determine display vertical size of my Blackberry Storm 2. I know, my device has 480 pixels height. I try to get this value in my code, but if virtual keyboard is shown, i get value equals ...
4
votes
3answers
4k views

Silverlight 3: Techniques for adjusting to screen resolution

My developer's box has a screen resolution of 1680 x 1050. I'm developing a full-screen Silverlight 3 application that I'm considering deploying to the Internet. So, I want to make sure the ...
4
votes
4answers
3k views

What is the design best practice for setting the page width for mobile web pages?

Different browsers on different phones have different screen resolution. Is there a best practice in the community to set the width to a standard size, so that it works on most moderns phones and ...
4
votes
3answers
3k views

General Browser display statistics

I need to come up with some figures on browser display (resolution) statistics. Obviously there is W3 Schools, however they state that these are results from their site and is biased towards tech ...
4
votes
5answers
433 views

Crossplatform way to change screen resolution

Is there any crossplatform way (Windows, Linux, MacOSX) to change screen resolution? Neither Java nor .Net-Mono can do it. Only through native API invocation. It's very strange situation: there are ...
3
votes
2answers
264 views

Get the real screen resolution on Ice Cream Sandwich

Devices with Ice Cream Sandwich can use on-screen soft keys, and this means that some of the screen estate is taken by these keys. I need to get the real screen resolution, and not the resolution ...
3
votes
4answers
91 views

How to write different HTML for different screen sizes

I understood how I change CSS via media queries (such as media="screen and (max-width:640px)") but let's say I want to write (just for example) <div> [if screen resolution is lower then 960 ...
3
votes
1answer
46 views

HTML Frontend for all screensizes

First off, I'm not sure if this is actually a "legal" question to ask here on StackOverflow since it is not really about programming, but more on the frontend-part. I'm about to create a webpage ...
3
votes
3answers
1k views

Get and Set Screen Resolution

How can I collect and change screen resolution using Visual C#?
3
votes
2answers
4k views

How to auto resize and adjust Form controls with change in resolution

I have noticed that some applications change their controls position to adjust them as much as possible in the resolution as possible, If window is maximized they set themselves in such a way that ...
3
votes
2answers
12k views

Automatic image resizing in a CSS flow layout to simulate a html-table layout

I have an image that, depending on the screen resolution, drops down out of sight in my CSS flow layout because I have set its width and height to static values. Is there a way in a CSS flow layout ...
2
votes
1answer
65 views

Different screen resolutions

I have a question about rendering a 2D game to a different screen resolutions. Right now I'm doing it like that: First I draw everything to a buffer, then I resize that buffer to current screen ...
2
votes
2answers
61 views

Browser's screen resolution?

I have: window.addEventListener('resize',doSomething,false); function doSomething() { var yres = document.body.offsetHeight; var xres = document.body.offsetWidth; ...
2
votes
0answers
22 views

Support qHD screens

Does anyone know how to support a qHd screen ? I tried everything but my HTC Sensation is not compatible with my apps? Greets
2
votes
1answer
54 views

How do i make my css work for screen resolutions?

At the moment my css will work on one resolution and then when I try and edit it with a screen with a different resolution, it changes it and doesn't look the same. I added a wrapper div to it, but ...
2
votes
2answers
93 views

Which screen resolution should i use?

I'm planning on making my first game in xna (simple 2d game) and i wonder which screen resolution that would be appropriate to target the game against.
2
votes
1answer
82 views

Different resolutions on Android game

how can I develop a game for different screen resolutions? I have already read about Density independant pixels (dp), but I still don't know how to use them. For example, what size should my View have ...
2
votes
3answers
161 views

Qt Screen Resolution Splash Screen

I have a splash screen image that I display with splash.showFullScreen() but it doesn't re size it to the screen resolution so it either comes out tiled or to large depending on the display. I have ...
2
votes
2answers
66 views

Changing default size for already developed winform app

i have a tricky one here (i think) I was just put on a new project where they working on an app which is pretty much done, it is on testing phase. BUT they JUST realized, they developed it on/for ...
2
votes
2answers
142 views

problem with font-size using html and css

when i built my first all html/css website i used clickable images as a menu and every image and div scaled in % so it would adapt extremely well to all monitors and browsers, and it did. now on a ...
2
votes
1answer
69 views

JQueryUI: Place dialog box where mouse is clicked

I want to place the jquery dialog box where the user clicks on the screen. so far I have: $("#something").click(function(e){ $("#myDialog").dialog( "option", "position", [e.pageX,e.pageY]); ...
2
votes
4answers
103 views

can I resize a program window in Windows to be arbitrarily large?

it seems that the size of the window, e.g. of an open browser, is capped based on the screen size or screen resolution or something along these lines. Is there a way to go around this and make the ...
2
votes
3answers
760 views

Android HTC Sensation resolution QHD

Any idea how to simulate qHD screen on android emulator. I tried to manually set the resolution, but the phone view is different from simulator view. My application on phone is truncated, but not in ...
2
votes
3answers
829 views

About IPhone4 screen resolution

I read from http://www.apple.com/iphone/specs.html that IPhone4's screen is 960-by-640-pixel resolution at 326 ppi. But in Xcode's IPhone4.3 simulator, when I manipulate the display objects, print ...
2
votes
1answer
142 views

Java Layout difference on identical screen resolutions

I have two screens that are using the same resolution (1280x1024), but one of them has a refresh rate of 59.9 HZ, and the other one has a refresh rate of 75 HZ. I have a full software that's developed ...

1 2 3 4 5