我在Android Manifest中有这部分代码:
<activity androID:name="<name>.app.MainActivity" androID:label="@string/app_name" androID:configChanges="keyboardHIDden|keyboard|locale|orIEntation" androID:screenorIEntation="portrait">
我正在使用片段根据用户输入显示不同的容器.
这是唯一具有碎片的活动.
我在这个网站上尝试了一些解决方案.包括按代码设置纵向模式
在java中的rootVIEw之后添加这一行
getActivity().setRequestedOrIEntation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); // programmatically
对于Ex:
VIEw rootVIEw = inflater.inflate(R.layout.activityxml,container,false); getActivity().setRequestedOrIEntation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);And also in your manifest change it androID:configChanges="orIEntation|keyboardHIDden" as androID:configChanges="keyboardHIDden"<activity androID:name="com.test.activity" androID:label="@string/app_name" androID:screenorIEntation="portrait" androID:configChanges="keyboardHIDden" >总结
以上是内存溢出为你收集整理的android – 设置screenOrientation到肖像不起作用全部内容,希望文章能够帮你解决android – 设置screenOrientation到肖像不起作用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)