DIP short for Density Independent Pixel. It is used by android system as a unit of measurement to make GUI fit on different screen size with scaling. This allows the developer to create a single interface for different screen sizes.

learn more… | top users | synonyms

0
votes
1answer
31 views

Android - Draw bitmap's on different screen densities

I have created an Maze-App on my Galaxy S3(1280x720), the problem is, I've used everywhere hard coded pixel values. When I run this App now on my Galaxy S2, all looks very big and everything is on ...
0
votes
2answers
31 views

dip is not stretching properly according to screen resolutions in android phones

I have used dip(eg: width = 30dip, scroll bar till the middle of screen) , as parameter But in 3.5 inches phone it looks fine, in 5 inches screen phones its not at all coming till middle, here goes ...
0
votes
1answer
38 views

Chrome on Android pixel ratio off?

I've implemented em's throughout all my mobile CSS, and I just set the font-size once on the body tag based on device-pixel-ratio to either 16px (ratio: 1), 24px (ratio: 1.5), or 32px (ratio: 2) etc., ...
0
votes
1answer
52 views

calculating nine patch sizes for all densities

I dont know how is best way to calculate size in pixels for round corners in nine patch images in all folders (hdpi, mdpi...), if I want for example 5dp round corner or something close to this size on ...
2
votes
2answers
192 views

How do I figure out what size (in pixels) an image needs to be for Android to display that image correctly across devices?

I have two images I want to display within my app. The first image is to be full screen (as a background for the app). I have read the 'Supporting Multiple Screens' article on developers.android.com ...
3
votes
1answer
79 views

How to build windows store app for device independent pixel (DIP)

i am building windows store app. I am using windows 8 and WPF with visual studio .net 2012. UI of this application should be scalable to different screens. I have created a page where the controls ...
0
votes
1answer
158 views

How to measure the physical distance between two points on a screen (Android)?

I'm building an Android app where the user has to touch a circle on the screen, and I need to record how far away the user's touch was from the center of the circle. Thing is, I want to record the ...
0
votes
1answer
108 views

How to draw a circle of the same physical size on different Android devices?

I have defined a circle radius dimension in a resources file like so: <?xml version="1.0" encoding="utf-8"?> <resources> <dimen name="circleRadius">15dp</dimen> ...
0
votes
1answer
115 views

User interface depending on business logic layer breaks dependency inversion principle?

Dependency Inversion Principle states: High-level modules should not depend on low-level modules. With that in mind, my old: UI -> Business Logic Layer -> Data Access Layer became UI -> ...
0
votes
0answers
28 views

Does Android treat native and non-native apps, ie. sites vs. mobile apps, differently in terms of px vs dp? [duplicate]

Possible Duplicate: How does android handle px vs dp in the browser? From what I've read here: http://developer.android.com/guide/practices/screens_support.html, android has a format for ...
3
votes
1answer
93 views

How does android handle px vs dp in the browser?

Everything I've found so far on Android's handling of px and dp seems to be regarding native android applications. How does Android handle websites using px in their CSS? Does it automatically ...
1
vote
1answer
304 views

Android - canvas drawBitmap and different resolutions?

I have this issue with drawing for example two bitmaps on canvas(it's for the live wallpaper). Thing is that small bitmap that is at front should be placed exactly in right place of the background ...
1
vote
1answer
135 views

What means .0 dp in android?

For example textview with size 33.0 dp in xml. It means double number or it has other features?
0
votes
1answer
304 views

Programaticaly set ImageView position in “dp”?

I've read: How to set margin of ImageView using code, not xml and the comment to use "You can scale the px value using context.getResources().getDisplayMetrics().density " Thing is, I have scale ...
2
votes
2answers
74 views

How does the Dependency-Inversion Principal (DIP) reduce the need to make changes to depending modules when their dependencies change?

I recently read about the Dependency-Inversion Principal in Robert.C.Martin's excellent book Agile Principals, Patterns and Practices in C#. However there is one aspect of this principal that I feel I ...
0
votes
1answer
84 views

How to make the button fit the same amount of the screen and be in the same place on android app

I have a basic soundboard app that I am developing for android using eclipse, which has 8 buttons. When I view these on the default 3.7" nexus they are all perfect size and positioning, but when I go ...
0
votes
0answers
96 views

Android: device independent pixel

I know using dip is good for compatibility to different screen devices. But I would like to ask i a tablet of 600*800 as an example with a text field of 600 dip fit to the screen. Does it still fit on ...
-1
votes
1answer
218 views

Android: device independent pixel?

If i have 96dip on a smaller screen device, it will enlarge to keep the ratio to the large screen device. Am I right?
0
votes
1answer
821 views

Widget size = (74dip*cells)-2 does not work in JellyBean

I have serious issues with my widget. I used this xml file: <?xml version="1.0" encoding="utf-8"?> <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" ...
2
votes
1answer
277 views

How to determine the quality of an image in matlab?

I am working on iris recognition and for pre-processing I have to check if the image is defocused in motion Can you help how to find if the image falls in above category? I am using Matlab ...
-5
votes
1answer
300 views

How to set LayoutParams margin top 800px

I want to know 800px = ?dp in my screen. My screen width=552px height=1024px. I want to set margin top 800px. How many set dip in LayoutParams margin top. thank.
1
vote
1answer
631 views

Converting dip to pixels yielding the same value

I need to convert density independent pixels to pixels in my activity. I tried using this method in my onCreate float pix = dipValue * getResources().getDisplayMetrics().density; pixel = ...
0
votes
1answer
743 views

Android views not scaling on different sized devices

I am using eclipse I have views with images and buttons with their width and height set in dp: <Button android:id="@+id/btn_menu_games" android:layout_width="70dp" ...
0
votes
1answer
757 views

The Document Information Panel was unable to load

Platform: SharePoint 2010, Office 2010 I have an issue with DIP as following: Create a new content type based on document content type called: Internal Memo Attach a word template file memo.dotx ...
0
votes
2answers
2k views

How to convert pixels to dp?

I am trying to create a simple android app in Java but I have hit a bump in the road. I have an Array List that contains many Bitmaps and I am drawing them to the canvas but I am using the ...
5
votes
2answers
438 views

WPF Units and Code-Behind

Recently I discovered WPF supports different measurement units in XAML. Besides default DIPs, there is also support for pixels, inches and centimeters (as far as I know). This allows designer to write ...
0
votes
1answer
2k views

Issue with DP calculation on 7“ tablet & 7” tablet emulator

I am having some problems with the dp calculation for a 7" tablet (800x480px). Below is my way of calculating. Can't find where I am making a mistake in calculation or my thought: I have three ...
0
votes
1answer
170 views

Specifying Android boot up custom resolution (in DIP)

I am developing for several different screen sizes with different DIP. While it's not a problem with AVDs, I would like to test it on a real device. I have a large screen to which my board is hooked ...
0
votes
3answers
120 views

How this class should be modified in order to follow DIP (Dependency Injection Principle)

How I can modify this class to follow DIP (Dependency Inversion Principle) in order to remove the two ArrayList dependencies in the constructor ? How the interfaces should be ? One thing that ...
0
votes
2answers
319 views

Getting my bitmaps on a canvas to always be “full screen”

So I have this canvas on where I paint bitmaps An example would be a bitmap as a background.. so I will make this full screen on my 533x320 dip Samsung S2 So, when I load this same app on a, lets ...
0
votes
2answers
442 views

Android : How to use DIP when the DIP resolution differs from device to device

I am really confused of the purpose with DIP on Android when the number of DIPs differs from device to device, even in the same size classed. (like medium displays) I am developing a game right now ...
3
votes
2answers
4k views

dp,pixels and inch

I was reading dp,px,sp measurements, but I still have some questions about dp vs px vs inch. I am not able to compare the three... is inch bigger? They say 160 dpi means 160 pixels per one inch. ...
7
votes
5answers
9k views

Formula px to dp, dp to px android

I am trying to calculate a variable amount of pixels to density independent pixels and vice-versa. This formula (px to dp): dp = (int)(px / (displayMetrics.densityDpi / 160)); does not work on small ...
0
votes
1answer
305 views

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..... ...
2
votes
1answer
155 views

Should I use or avoid independent-density pixels in android animated game development?

My question is: Does the DIP "engine" kill performance? How it would perform for bitmap sprites and how for drawing polygons? If I should avoid this: is it any good guide how to handle multiple ...
1
vote
0answers
542 views

DPI for picture sizing in Android

I read all documentation on android pages and also here many questions but I still not understand it so I ask it clearly. If I have a "picture.png" which is 100px - 100px 72dpi (dot per inch) and is ...
2
votes
2answers
398 views

Codeigniter interaction outside of codeingiter [closed]

I have been painstakingly looking for a way to introduce codeigniter interaction with my non-codeigniter based projects, whether it be wordpress or raw php pages. I have a model as well as views that ...
9
votes
1answer
2k views

Unit-Testing OSGi-Components

I'm currently thinking of "How to design an OSGi component so that it's easy to write tests for it with frameworks like jUnit and Mockito". Mocking inter-bundle-dependencies is quite easy since ...
2
votes
3answers
2k views

Android actual auto-scaling width/height parameters?

I was under the impression that 'dip' (Density Independent Pixel) values were the android solution to using % values to determine the width and height of layout elements. I thought this was an upgrade ...
1
vote
1answer
667 views

Changing Transparent Background to White in Matlab

Please consider the following piece of Matlab code: MyImage = imread('a.png'); imwrite(MyImage, 'a.jpg', 'jpg'); The problem I am facing is that a.png has a transparent background. When I save ...
0
votes
0answers
55 views

Passing an enum value to the controler constructor MVC 2

I got a piece of code like follows private Models.Quotes QuoteList; public SalesOfficeController(Models.Quotes.QuoteType qt ) { QuoteList = new Models.Quotes(qt); } I ...
8
votes
3answers
7k views

How to determine the screen width in terms of dp or dip at runtime in Android?

I need to code the layout of the android widgets using dip/dp (in java files). At runtime if I code, int pixel=this.getWindowManager().getDefaultDisplay().getWidth(); this return the screen width ...
4
votes
2answers
4k views

How do I convert to DIP?

What is the formula for converting regular pixels to DIP? Assuming I have a photoshop document with a design in it that was intended for the Galaxy Tab (for example) which is 600x1024 actual pixels. ...
0
votes
1answer
2k views

Dip in xml does not work for different screen density in android simulator

I'm testing multi dpi in android, and the layout xml file seems like this: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
2
votes
3answers
3k views

basics of device-independent-pixels

im throughoutly confused by dips on Android. I understand from the reference that the base for dp values is 160. So, shouldn't 80dp in width equals a view with a width of 50% of the screen ? On my ...
1
vote
1answer
812 views

How do you begin developing an Android app for multiple devices sizes/densities?

I've asked a question similar to this but thought I would ask a more general question to get a wider range of input. I ask this question because the last two apps I've developed, I threw all image ...
15
votes
3answers
11k views

How do you make layouts for several Android screen sizes?

I've done some research on building layouts that work for multiple screen sizes and I'm looking for some clarification. Is it common practice to just make a separate layout file for each of the three ...
0
votes
3answers
463 views

how to get same sized launcher icons on different emulator skins…(android)

have a look at figure 2. in the link given below.. http://developer.android.com/guide/practices/screens_support.html.. there it is being mentioned that ,The platform provides density independence to ...
2
votes
2answers
3k views

Should I use dip, dp, sip or sp for text formatting?

I wouldn't say my app is text heavy...but it displays random strings sometimes that are longer than others. They fit fine on my droid 2, but I know they won't display the same on smaller droids. ...
1
vote
2answers
854 views

Android DIP size wrong

This one is bedeviling me. What am I overlooking? I want a button exactly one inch wide, on any density screen. I declare it in the layout like this: <Button ...

1 2