链接打开时,固定的webview横向模式会发生变化

时间:2014-01-11 11:58:23

标签: android webview

在mysimple webview应用程序中,我将webview定位为横向,并且网站始终在横向打开,但是当打开wesite中的另一个链接时,它仅在porttrait视图中出现。任何人都可以帮助我使它始终在横向模式eventHough另一个链接打开。

webview.xml

<?xml version="1.0" encoding="utf-8"?>
<WebView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
/>

的manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.webview"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />
    <uses-permission android:name="android.permission.INTERNET" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.webview.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.webview.WebActivity"
            android:label="@string/title_activity_web" 
            android:screenOrientation="landscape">
        </activity>
    </application>

</manifest>

2 个答案:

答案 0 :(得分:1)

试试这个..

setContentView(R.layout.webview)

之后的Java中
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

答案 1 :(得分:0)

在androidmanifest文件中将方向设置为“sensorlandscape”并设置配置更改。

Please refer this site