有许多应用程序能够强制屏幕旋转。即使应用程序明确希望以另一个方向查看,它们也能正常工作。现在我正在禁用加速度计旋转系统设置并设置我的首选方向。应用程序仍然可以覆盖它。
这是能够覆盖应用程序请求方向的应用程序之一:
https://play.google.com/store/apps/details?id=nl.fameit.rotate&hl=en
有许多应用程序能够强制屏幕旋转。即使应用程序明确希望以另一个方向查看,它们也能正常工作。现在我正在禁用加速度计旋转系统设置并设置我的首选方向。应用程序仍然可以覆盖它。
这是能够覆盖应用程序请求方向的应用程序之一:
https://play.google.com/store/apps/details?id=nl.fameit.rotate&hl=en
我尝试了 kagronick 的回答,但无法成功。在搞砸了一段时间后,我最终使用系统覆盖窗口让它工作并删除了我发现的 LayoutParams 都是不必要的。这是我的最终解决方案:
orientationChanger = new LinearLayout(this);
// Using TYPE_SYSTEM_OVERLAY is crucial to make your window appear on top
// You'll need the permission android.permission.SYSTEM_ALERT_WINDOW
WindowManager.LayoutParams orientationLayout = new WindowManager.LayoutParams(WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY, 0, PixelFormat.RGBA_8888);
// Use whatever constant you need for your desired rotation
orientationLayout.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_SENSOR;
// Optional: Replace "Context" with "Service" when used in a service
WindowManager wm = (WindowManager) this.getSystemService(Context.WINDOW_SERVICE);
wm.addView(orientationChanger, orientationLayout);
orientationChanger.setVisibility(View.VISIBLE);
您可以在我基于此发布的应用程序中看到我的成功:Force Dock Rotation。
这可以通过创建一个隐藏的系统对话框来完成。它有点像黑客,但它足够疯狂,可以工作。
wm = (WindowManager) content.getSystemService(Service.WINDOW_SERVICE);
orientationChanger = new LinearLayout(content);
orientationChanger.setClickable(false);
orientationChanger.setFocusable(false);
orientationChanger.setFocusableInTouchMode(false);
orientationChanger.setLongClickable(false);
orientationLayout = new WindowManager.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,
windowType, WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL
| WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
PixelFormat.RGBA_8888);
wm.addView(orientationChanger, orientationLayout);
orientationChanger.setVisibility(View.GONE);
orientationLayout.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
wm.updateViewLayout(orientationChanger, orientationLayout);
orientationChanger.setVisibility(View.VISIBLE);
顺便说一句,您还可以全局更改屏幕方向,而无需在不受支持的应用程序中强制它。(我知道这个问题是关于覆盖应用程序的偏好,但这仍然是有用的并且主要是相关的信息。)
授予对AndroidManifest.xml中系统设置 ( WRITE_SETTINGS
)的访问权限
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
进口Settings
import android.provider.Settings;
确保禁用Android 屏幕自动旋转
Settings.System.putInt(
getContentResolver(),
Settings.System.ACCELEROMETER_ROTATION,
0
);
设置USER_ROTATION
为所需的设置,它应该是ROTATION_
常量之一。这些值代表设备自然方向的屏幕旋转,可以是横向或纵向。
Settings.System.putInt(
getContentResolver(),
Settings.System.USER_ROTATION,
Surface.ROTATION_0 //Or a different ROTATION_ constant
);
请注意,USER_ROTATION
即使您的应用未运行或已卸载,更改也会持续存在。如果我没记错的话,用户可以通过手动禁用和启用自动旋转来重置这个值。
创建一个View
始终显示在其他应用程序之上的隐形。View
s 可以指定他们自己的方向偏好,因此您的视图的方向可以用来覆盖底层视图和应用程序的方向。
我知道您可以使用几种不同的视图类型来实现这一点,每种都有自己的缺点。
系统覆盖窗口 ( TYPE_SYSTEM_OVERLAY
)
需要SYSTEM_ALERT_WINDOW
权限。(将以下内容添加到AndroidManifest.xml。)
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
吐司窗口 ( TYPE_TOAST
)
无需许可,MIUI V8 除外。
不显示在某些窗口类型上,因此它们的方向可能不会受到影响:
TYPE_PRIORITY_PHONE
)TYPE_DREAM
)TYPE_KEYGUARD_DIALOG
, TYPE_KEYGUARD_SCRIM
)View
.WindowManager.LayoutParams
.
type
为您在上面选择的值。width
并height
防止重叠时无法运行的应用程序出现问题。(例如,如果窗口位于其顶部,则当您尝试启用辅助功能服务时,Android 不会让您按下“确定”按钮。)screenOrientation
的任何方向值。public class ScreenOrientationEnforcer {
private final View view;
private final WindowManager windows;
public ScreenOrientationEnforcer(Context context) {
windows = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
view = new View(context);
}
public void start() {
WindowManager.LayoutParams layout = generateLayout();
windows.addView(view, layout);
view.setVisibility(View.VISIBLE);
}
public void stop() {
windows.removeView(view);
}
private WindowManager.LayoutParams generateLayout() {
WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
//So we don't need a permission or activity
//Note that this won't work on some devices running MIUI
layoutParams.type = WindowManager.LayoutParams.TYPE_TOAST;
//Just in case the window type somehow doesn't enforce this
layoutParams.flags =
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
| WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
//Prevents breaking apps that detect overlying windows enabling
//(eg UBank app, or enabling an accessibility service)
layoutParams.width = 0;
layoutParams.height = 0;
//Try to make it completely invisible
layoutParams.format = PixelFormat.TRANSPARENT;
layoutParams.alpha = 0f;
//The orientation to force
layoutParams.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
return layoutParams;
}
}
用法
ScreenOrientationEnforcer screenOrientationEnforcer
= new ScreenOrientationEnforcer(context);
//Force screen orientation
screenOrientationEnforcer.start();
//Stop forcing screen orientation
screenOrientationEnforcer.stop();
PhoneWindowManager.windowTypeToLayerLw
PhoneWindowManager.checkAddPermission