如何水平翻转我的 android 屏幕,以便像在镜子上观看一样看到它?
How to horizontal flip my android screen, in order to see it like if i am watching it on a mirror?
我在为 android 编程时有一个问题,我只是想知道是否有办法翻转我所有的 android 应用程序,以便像镜子一样看到它。
主要想法是翻转我的应用程序,以便在镜子中看到它,并且在镜子中反射后它对我来说看起来很正常。
抱歉,如果我不是很具体,但任何想法或文档都会受到赞赏,而且我不知道如何查找该信息,所以我无法深入了解更多信息。
提前致谢。
不是镜面效果:
我建议另一种方式:
将reverseLandscape添加到清单
<activity
...
android:screenOrientation="reverseLandscape" />
这样状态栏也会旋转。
我在为 android 编程时有一个问题,我只是想知道是否有办法翻转我所有的 android 应用程序,以便像镜子一样看到它。
主要想法是翻转我的应用程序,以便在镜子中看到它,并且在镜子中反射后它对我来说看起来很正常。
抱歉,如果我不是很具体,但任何想法或文档都会受到赞赏,而且我不知道如何查找该信息,所以我无法深入了解更多信息。
提前致谢。
不是镜面效果:
我建议另一种方式:
将reverseLandscape添加到清单
<activity
...
android:screenOrientation="reverseLandscape" />
这样状态栏也会旋转。