如何以编程方式更改屏幕分辨率?
让我告诉你我的问题。我想更改屏幕分辨率。 我可以在应用程序中更改它,但它仅更改应用程序的 屏幕。我想设置系统的分辨率,所以哪个并不重要 应用程序在前面运行。我的设备分辨率设置为1280 * 720 页。可以做成1260*680吗?如果需要进行更改 Android源码,我可以。只要告诉我哪里需要改变就可以了。等待 你的帮助。
Let me tell you my problem. I want to change my screen resolution.
I can change it in an application but it changes only application's
screen. I wanna set system's resolution so it won't be important which
application is running on front. My device's resolution is set as 1280
* 720 p. Can I make it 1260 * 680? If it requires to make changes in
Android source code, I can. Just tell me where to change. Waiting for
your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
xda-developers 上的这个帖子应该会让您走上正确的道路。
This thread on xda-developers should set you on the right track.
也搜索了一个有效的答案,但我找到了解决方案:
警告实验性错误:
将 IWindowManager 的简化 AIDL 版本添加到您的项目中:
/app/src/main/aidl/android/view/IWindowManager.aidl
该应用程序需要位于系统应用程序文件夹中。
它确实起到了一些作用,但现在它也导致了严重的错误。
重新启动似乎会取消更改。
正在等待对此的反馈。
Searching too a valid answer to this, but I have a lead to the solution :
WARNING Experimental buggy stuff :
Add a reduced AIDL version of IWindowManager to your project :
/app/src/main/aidl/android/view/IWindowManager.aidl
The app will require to be in the system apps folder.
It does something for sure, but right now it also lead to severe bugs.
Rebooting seems to cancel changes.
Waiting for feedback on this.
如果您使用 Windows 并且知道如何使用 JNI,Microsoft 提供了 C++ Win32 函数调用来执行此操作: ChangeDisplaySettingsEx() 和 EnumDisplaySettings()。
If you are using Windows and know how to use JNI, Microsoft provides C++ Win32 function calls to do this: ChangeDisplaySettingsEx() and EnumDisplaySettings().