0

android height width of all object for all screen resolution of android devices :

for example: 240px 320px 480px etc.. devices have different resolution. I need complete size list for all object like , button , icon, tab-bar, tab-bar-icon, top nav size, etc...

any one can help me ?? Thanks

iDev Technolab
  • 51
  • 1
  • 3
  • 9

2 Answers2

0

First of all: forget px when working with Views on Android. Here is the official documentation describing how to support different screen sizes, I highly suggest to consult this document before aiming to support different screens.

Regarding the sizes of UI components: here you go, a very detailed description.

Droidman
  • 11,485
  • 17
  • 93
  • 141
0

First of all, use for example dp (dip) instead of px. And look at the documentations that Droidman posted.

Stains
  • 97
  • 1
  • 12