Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So i have a small problem, i'm writing a function which need to send screen width to server. I got it all to work, and i use:

Display display = getWindowManager().getDefaultDisplay(); 
int width = display.getWidth();

to get width. However .getWidht() function is deprecated and it says u need to use:

Point size = new Point();
display.getSize(size);

But that function is only avaible for api level 13 or more, and my minimum sdk is 8. So what can i do? Is it safe if i stay with getWidth? Why adding new function and not make them backward compatible?

share|improve this question

3 Answers

up vote 0 down vote accepted

If you want to be correct, use this approach>

           int sdk = android.os.Build.VERSION.SDK_INT;
            if (sdk < android.os.Build.VERSION.RELEASE) {
                Display display = getWindowManager().getDefaultDisplay();
                int width = display.getWidth();

            } else {
                Point size = new Point();
                display.getSize(size);

            }
share|improve this answer
You're comparing an int against a String (VERSION.RELEASE) there. – nmw Oct 9 '12 at 20:50

You can check for API level at runtime, and choose which to use, e.g.:

final int version = android.os.Build.VERSION.SDK_INT;
final int width;
if (version >= 13)
{
    Point size = new Point();
    display.getSize(size);
    width = size.x;
}
else
{
    Display display = getWindowManager().getDefaultDisplay(); 
    width = display.getWidth();
}
share|improve this answer
hmm sounds ok, but steal is it fine if i only use getwidth? – gabrjan Oct 8 '12 at 11:05
Yes, if it's not available on older versions then you've got no option. – nmw Oct 8 '12 at 11:07
you can do fine enough with getWidth() in most cases. – slezadav Oct 8 '12 at 11:07
ok thank u all! – gabrjan Oct 8 '12 at 11:08

May be this approach will be helpful:

DisplayMetrics displaymetrics = new DisplayMetrics();
mContext.getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
int screenWidth = displaymetrics.widthPixels;
int screenHeight = displaymetrics.heightPixels;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.