当前位置:操作系统 > 安卓/Android >>

Android 技术总结(013)—— 设置相机的角度(api2.2以下的版本)

[java]
 * 设置相机的预览角度,在2.2以上可以直接使用setDisplayOrientation
 * 
 * @param orientation 相机的预览角度
 */ 
private void setDisplayOrientation(int orientation) { 
    Method setCameraDisplayOrientation; 
    try { 
        // 通过反射,获取相应的方法 
        setCameraDisplayOrientation = mCamera.getClass().getMethod( 
                "setDisplayOrientation", new Class[] { int.class }); 
        if (setCameraDisplayOrientation != null) { 
            setCameraDisplayOrientation.invoke(mCamera, 
                    new Object[] { orientation }); 
        } 
    } catch (Exception e) { 
        MobclickAgent.reportError( 
                mContext, 
                getResources().getString( 
                        R.string.umeng_error_set_display_orientation)); 
        e.printStackTrace(); 
    } 

补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,