Back to project page Billy.
The source code is released under:
GNU General Public License
If you think the Android project Billy listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.vibin.billy.swipeable; /* w w w .ja va 2 s . c om*/ /** * Created by Saketme on 5/25/2014. * POJO for holding dimensions of either the available window or full display. * <p/> * USED BY * --------- * <p/> * 1. WindowUtils */ public class WindowDimens { public int width; public int height; public int statusBarHeight; //NOTE When in landscape mode, ignore Nav bar height public int navBarHeight; public WindowDimens(int width, int height, int statusBarHeight, int navBarHeight) { this.width = width; this.height = height; this.statusBarHeight = statusBarHeight; this.navBarHeight = navBarHeight; } }