基于WebView的应用程序的纵向模式问题
我有一个使用 WebView 的 Android Web 应用程序。我的一切都是使用asp.net在服务器端开发的。 该应用程序的设计在横向模式下相当不错,但在纵向模式下就出现了问题。
我现在应该做什么,将每个页面设计为纵向模式或其他模式。
I have a Android web application for Tab by using WebView. My everything is developed on server side by using asp.net.
the application design is quite ok on landscape mode but its break on portrait mode.
What should I do now, design every page for portrait mode or something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 android:screenOrientation="portrait" 添加到 AndroidManifest.xml 中的活动(在 webview 活动中)。例如:
或以编程方式
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); // 固定纵向方向
让我知道它是否有效
just add android:screenOrientation="portrait" to the activity (in ur case in webview activity)in the AndroidManifest.xml. For example:
or programmaticaly
setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); // Fixed Portrait orientation
dolet me know it works or not