Click here to Skip to main content
15,883,705 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
Executing this function on Android 2.3.4 Phone:
C#
public void GetScreenSize(){
    Display display = getWindowManager().getDefaultDisplay();
    Point size = new Point();
    display.getSize(size);
    width = size.x;
    height = size.y;
}

width = 0, height = 0. Why? Please help.
P.S. On Android 4.0.4 tablet PC it works perfect.
Posted
Updated 30-Dec-12 10:09am
v2
Comments
TorstenH. 31-Dec-12 3:29am    
You should try to use relative sizing. Otherwise you would have to figure possible screen solutions and react on them. That would turn into serious trouble soon as there are quite some devices with various screens out.

1 solution

The display.getSize[^] was added in API level 13 and Android 2.3.4 uses API level[^] 10.

Use the Build.VERSION[^] class to see which API level is supported and how you should retrieve the display size.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900