作者:程序员小冰,CSDN博客:http://blog.csdn.net/qq_21376985
只需在在Manifest.xml中设定activity的属性为:
android:windowSoftInputMode="stateHidden|stateUnchanged"
还有:在开发android的应用中,有时候需要限制横竖屏切换。只需要在AndroidManifest.xml文件中加入android:screenOrientation属性限制。
android:screenOrientation="landscape"是限制此页面横屏显示,
android:screenOrientation="portrait"是限制此页面数竖屏显示。