Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I get the size of the android application window and not the physical screen size?

In Android, how can I get the size of the app window? I'm NOT looking for the physical screen size, but the actual size of the applications window on the screen. E.g. generally what's left after you take away the notification bar, soft touch buttons, etc.

like image 458
Chris Knight Avatar asked Nov 30 '12 23:11

Chris Knight


People also ask

How do I make my Android apps fit all screen sizes?

Simple, use relative layout with the set margin code. Set the margins between each text view, button, etc and it will look the same on every phone. android:layout_marginTop="10dp" // change Top to Bottom, Left or Right for what you need.

How do I fix my app screen size?

On your device, open the Settings app. Search and select Display size. To change your preferred display size, move the slider left or right.


1 Answers

If you want the size of your app's window you can just call yourview.getHeight() and yourview.getWidth(); But the view must be drawn for that to work.

If you want to get the height before it's drawn you can do this:

https://stackoverflow.com/a/10134260/1851478

There are a lot of different cases of screen/view measurement though, so if you could be more specific about "actual size of applications window", is this your app? Or the home screen app?, some other app?

If you want usable space minus decorations (status bar/soft button), you can attack it in reverse as well, for example measuring the actual screen dimensions (the methods vary by API), and then subtract the height of the status bar.

Example display height:

// Deprecated
((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay().getHeight();

status bar height:

Rect rectgle= new Rect();
Window window= getWindow();
window.getDecorView().getWindowVisibleDisplayFrame(rectgle);
int StatusBarHeight= rectgle.top;

Or

int statusBarHeight = Math.ceil(25 * context.getResources().getDisplayMetrics().density);

Many different ways to do this.

Certainly need more info from you though to give a more accurate answer.

like image 64
logray Avatar answered Oct 15 '22 10:10

logray