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

时间:2011-05-26 12:11:32

标签: android android-webview device-orientation

我有一个使用WebView的Tab的Android Web应用程序。我的一切都是在服务器端使用asp.net开发的。 应用程序设计在横向模式下非常好,但在纵向模式下中断。

我现在应该做什么,为肖像模式或其他什么设计每一页。

1 个答案:

答案 0 :(得分:1)

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

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

或programmaticaly

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); //修正纵向方向

让我知道它是否有效