在Android中禁用景观模式?

在Android中禁用景观模式?

如何禁用我的Android应用程序中的某些视图的景观模式?



波斯汪
浏览 353回答 3
3回答

莫回无

我不知道AndroidManifest.xml文件切换直到阅读这篇文章,所以在我的应用程序中,我使用了以下这些:setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);     //  Fixed Portrait orientation

holdtom

加上这个android:screenOrientation="portrait"在您的清单文件中,您可以这样声明您的活动<activity&nbsp;android:name=".yourActivity" &nbsp;&nbsp;&nbsp;&nbsp;....&nbsp;&nbsp;&nbsp;&nbsp;android:screenOrientation="portrait"&nbsp;/>如果要使用java代码,请尝试setRequestedOrientation&nbsp;(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);在你打电话之前setContentView方法中的活动。onCreate().希望这对大家都有帮助和容易理解.
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android