Android 4.1-4.2 默认窗体旋转180 度代码

http://computer.uoh.edu.cn/android/1265.html


.设置属性值

system/build.prop文件中加入 ro.sf.hwrotation= 80

2.设置窗体默认显示方向

frameworks/native/services/surfaceflinger/SurfaceFlinger.cpp文件中找到方法

setDisplayHardware

在switch中加入

case 180:

displayOrientation = ISurfaceComposer::eOrientation180;

break;

3.设置窗体动画旋转方向

a > 在frameworks/base/core/java/android/view/Surface.java加入方法

/**

* @hide

*/

public static int getDefaultRotation(){

return android.os.SystemProperties.getInt("ro.sf.hwrotation", 0);//180

}

/**

* @hide

*/

public static int getDefaultRotationIndex(){

int rotation = getDefaultRotation();

switch(rotation){

case 0:

return ROTATION_0;

case 90:

return ROTATION_90;

case 180:

return ROTATION_180;

case 270:

return ROTATION_270;

}

return ROTATION_0;

}

b > 在

frameworks/base/services/java/com/android/server/vm/ScreenRotationAnimation.java 文件中找到(android4.1) 方法setRotation

或(android4.2)方法setRotationInTransaction

修改 deltaRotation(rotation,Surface.ROTATION_0);

deltaRotation(rotation,Surface. getDefaultRotationIndex());

3 .修改最近程序视图方向

frameworks/base/packages/systemui/src/com/android/systemui/RecentsPanelView.java 文件中修改如下

private int mThumbnailHeight;//add

在方法中添加

public void updateVoluesFromResources(){

………………………………………………..

mThumbnailHeight = Math.round(res.getDimension(R.dimen.status_bar_recents_thumbnail_height));//add

}

在方法中添加

private void updateThumbnail(…) {

else {

Matrix scaleMatrix = new Matrix();

float scale = mThumbnailWidth / (float) thumbnail.getWidth();

scaleMatrix.postScale(scale, scale);//setScale

h.thumbnailViewImage.setScaleType(ScaleType.MATRIX);

h.thumbnailViewImage.setImageMatrix(scaleMatrix);

//add

if(Surface.getDefaultRotation() > 0){

Matrix rotateMatrix = new Matrix();

rotateMatrix.setRotate(Surface.getDefaultRotation(),mThumbnailWidth/2,mThumbnailHeight/2);

h.thumbnailViewImage.setImageMatrix(rotateMatrix);

}

//add end

}

4.修改截屏图片方向

frameworks/base/pacikages/systemui/src/com/android/systemui/GlobalScreenshot.java 文件中找到takeScreenshot方法

修改 float degrees = getDegreesForRotation(mDisplay.getRotation());

int rotation = mDisplay.getRotation();

if(Surface.getDefaultRotation() > 0){

rotation = (rotation + Surface.getDefaultRotationIndex())%4;

}

float degrees = getDegreesForRotation(rotation);

OK 这样就完成屏幕旋转180度


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值