Back to project page FxCameraApp.
The source code is released under:
MIT License
If you think the Android project FxCameraApp 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.af.experiments.FxCameraApp.display; /*from w w w .ja va2s . c om*/ import android.content.Context; import android.graphics.Point; public class DisplayHelperHoneycombMR2 extends DisplayHelperHoneycomb { public DisplayHelperHoneycombMR2(final Context context) { super(context); } @Override public Point getDisplaySize() { final Point point = new Point(); getDefaultDisplay().getSize(point); return point; } }