读书人

照相机预览2.1版本一下兼容setDisplay

发布时间: 2012-07-23 09:42:19 作者: rapoo

相机预览2.1版本一下兼容setDisplayOrientation

protected void setDisplayOrientation(Camera camera, int angle){    Method downPolymorphic;    try    {        downPolymorphic = camera.getClass().getMethod("setDisplayOrientation", new Class[] { int.class });        if (downPolymorphic != null)            downPolymorphic.invoke(camera, new Object[] { angle });    }    catch (Exception e1)    {    }   }
?

读书人网 >移动开发

热点推荐