首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

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

2012-07-23 
相机预览2.1版本一下兼容setDisplayOrientationprotected void setDisplayOrientation(Camera camera, int

相机预览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)    {    }   }
?

热点排行