Android 屏幕实现上下翻转
程序员文章站
2022-05-17 22:35:42
android 屏幕实现上下翻转
通常我们的应用只会设计成横屏或者竖屏,锁定横屏或竖屏的方法是在manifest.xml文件中设定属性android:screenorie...
android 屏幕实现上下翻转
通常我们的应用只会设计成横屏或者竖屏,锁定横屏或竖屏的方法是在manifest.xml文件中设定属性android:screenorientation为"landscape"或"portrait":
<activity android:name="com.example.kata1.mainactivity" android:label="@string/app_name" android:screenorientation="landscape"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity>
其实screenorientation还可以设置成很多值:
android:screenorientation = ["unspecified" | "behind" | "landscape" | "portrait" | "reverselandscape" | "reverseportrait" | "sensorlandscape" | "sensorportrait" | "userlandscape" | "userportrait" | "sensor" | "fullsensor" | "nosensor" | "user" | "fulluser" | "locked"]
其中sensorlandscape就是横屏根据重力上下翻转,sensorportrait竖屏根据重力上下翻转。
如果有兴趣,你也可以试试其他的值哦...
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇: 全面剖析:为什么你的挽回前男友不成功?
下一篇: 分手怎样才能挽回?有什么好的方法吗
推荐阅读
-
Android仿淘宝头条基于TextView实现上下滚动通知效果
-
Android编程使用LinearLayout和PullRefreshView实现上下翻页功能的方法
-
Android TextSwitcher实现文字上下翻牌效果(铜板街)
-
Android编程实现将ButtonBar放在屏幕底部的方法
-
Android编程实现将tab选项卡放在屏幕底部的方法
-
Android编程实现屏幕自适应方向尺寸与分辨率的方法
-
Android编程实现获得手机屏幕真实宽高的方法
-
android实现上下滚动的TextView
-
Android编程实现获取标题栏、状态栏的高度、屏幕大小及模拟Home键的方法
-
android屏幕全屏的实现代码