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?
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 ...
3
votes
5answers
2k views

HTML/CSS: What should I use to define image height/width to make it resolution independent?

I've read all over the Internet that I should not define fonts (or anything) with absolute pixel height/width/size and instead, use EM ... so that on higher resolution displays, my web site can scale ...
3
votes
2answers
1k views

Is the ViewBox the best thing to use to achieve resolution independence in WPF?

I'm developing an application that needs to be resolution independent. The application will always be full screen so I have to design my UI so that the monitor resolution will not impair the use of ...
2
votes
1answer
106 views

Scaling entire screen in XNA

Using XNA, I'm trying to make an adventure game engine that lets you make games that look like they fell out of the early 90s, like Day of the Tentacle and Sam & Max Hit the Road. Thus, I want the ...
2
votes
1answer
237 views

Which screen size / density combinations should I support for bitmap background image?

I'm writing an application where I will need a number of full screen bitmap backgrounds. Based on my naive reading of Supporting Multiple Screens in the Android documentation, to cover all my bases I ...
2
votes
2answers
630 views

Scale an entire WPF window

I have a WPF application that I am going to be demoing to an audience on a large, high-resolution projector, and I am worried that the application will be too small to see from afar. Is there a ...
2
votes
3answers
769 views

Resolution independent or monitor size independent WPF apps

how could i develop resolution independent and monitor size independent wpf apps. monitor size independent means here suppose i develop a wpf apps in 15inch monitor and when i will view that apps in ...
2
votes
1answer
473 views

How do I display this image in Android?

How do I display an image with the following configuration in Android? Retain original aspect ratio (the image can be scaled, but not stretched) Fill the width of the parent Aligned to the bottom of ...
2
votes
2answers
285 views

C# Winform size reduced in reduced resolution

I have a pretty simple c# application that uses .net framework 2.0. In my development machine (which is set to 1024x768) the app appears fine. The client runs the application in 1024x600 netbook, ...
2
votes
2answers
204 views

Finding out how many lines can be displayed in wx.richtext.RichTextCtrl without scrolling

I'm writing an e-book reader in Python + wxPython, and I'd like to find out how many lines of text can be displayed in a given RichTextCtrl with the current formatting without scrolling. I thought ...
2
votes
1answer
1k views

tips on developing resolution independent application

Is it a good practice to find the workarea measurement and set some properties in code so that it could be bound to Control's margin or height/Width properties in xaml? I do this so that my window ...
2
votes
2answers
99 views

I have a page that contains both Flex and HTML at the same time. How do I make it cross resolution?

In one of my pages, I use a Flex 4 app in a column on the left, and then normal HTML in a column to the right. Is there anyway I can make it so that the ratio between the two columns is the same no ...
2
votes
3answers
3k views

Flex : Cross resolution applications

What is the best way to create applications in Flex/AIR, which look and feel the same irrespective of the screen resolution?
1
vote
1answer
71 views

How to obtain 'Ctrl +' behavior on a browser using Javascript?

I opened the Stack Overflow website on my 47 inch LCD TV (resolution 1920 * 1080, 16:9) and found the text and website right in the middle of a lot of whitespace. The text was unreadable because Stack ...
1
vote
1answer
540 views

Ensuring that application is independent of users' screen resolution

Is there any easy way to run an application created in C# on Visual Studio 2005 on any different PC, regardless of its screen resolution?
1
vote
2answers
423 views

Different images for different resolutions in HTML resources in Android

How do you display different images for different screen resolutions (hdpi, ldpi, mdpi) in an embedded HTML resource of an Android app? The HTML resource is located in assets, but can be changed if ...
0
votes
1answer
94 views

Android DPI independence on devices with same the resolution

I Have a few general questions about Android screen / DPI / resolution indepence. Basically, I am taking specifically about sprite-based apps, like ones based on Surfaceview for example. Every guide ...
0
votes
0answers
35 views

Android Sprite Jump Physics and screen independence

I've been writing a 2D Surfaceview game for what seems an eternity now and I simply cannot get my head around screen independence for Android. Basically, my sprite jumps like so: Y value is ...
0
votes
0answers
54 views

Fixed pixel-size WinForm Custom control inside WPF full screen application

I try to insert a Winform custom control inside WindowsFormHost. This custom control only works in a fixed height & width. I try to specify the width & height for this custom control & ...
0
votes
0answers
99 views

Android : Understanding DIP for sprite movement / velocity

This is my first post, so I apologise in advance if I have done anything wrong here in asking my question. I've looked all over the net for a specific answer, but can't find one, so here goes..... ...
0
votes
0answers
58 views

implementing resolution independence in Android

I am new to Android, and i want to know how to implement resolution independence in an Android application. Like in HTML and CSS, sizes are set in %age which achieves this, but when building Android ...
0
votes
1answer
37 views

designing a REST api that supports multiple screensizes

Until now all my thumbnails have been 150x150. I would like to support different thumbnail sizes, in order to deal with different Android/iPhone models. I have been considering this way of supporting ...
0
votes
3answers
205 views

Software Display Problem

Using VB6 My Default Software display setting as "800 x 600" Clients having different display setting like "800 x 600", "1366 x 768", "1280 x 768" Client using the software more than "800 x 600" ...
0
votes
2answers
463 views

Monitor Screen Independent Forms size & Control Size?

in various case i have seen that when we run apps in various pc with different monitor size then win form behave differently. sometime the form get bigger and as a result few control on that form will ...
0
votes
1answer
222 views

My vector sprite renders in different locations in simulator and device

I'm implementing a subclass of UIView that displays a gauge dial with a sprite for the indicator. It has angle property that I can vary to make the needle point to different angles. It works, but on ...