基于WebView的应用程序的纵向模式问题

发布于 2024-11-10 04:09:18 字数 135 浏览 0 评论 0原文

我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转身泪倾城 2024-11-17 04:09:18

只需将 android:screenOrientation="portrait" 添加到 AndroidManifest.xml 中的活动(在 webview 活动中)。例如:

    <activity android:name=".SomeActivity"
          android:label="@string/app_name"
          android:screenOrientation="portrait">

或以编程方式

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:

    <activity android:name=".SomeActivity"
          android:label="@string/app_name"
          android:screenOrientation="portrait">

or programmaticaly

setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); // Fixed Portrait orientation

dolet me know it works or not

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文