0
点赞
收藏
分享

微信扫一扫

Android开发禁止首次进入activity弹出软键盘,限制屏幕只能竖屏或者横屏展示


只需在在Manifest.xml中设定activity的属性为:

android:windowSoftInputMode="stateHidden|stateUnchanged"

还有:在开发android的应用中,有时候需要限制横竖屏切换。只需要在AndroidManifest.xml文件中加入android:screenOrientation属性限制。

android:screenOrientation="landscape"是限制此页面横屏显示,  

android:screenOrientation="portrait"是限制此页面数竖屏显示。


举报

相关推荐

0 条评论