在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>
答案 0 :(得分:1)
试试这个..
在setContentView(R.layout.webview)
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
答案 1 :(得分:0)
在androidmanifest文件中将方向设置为“sensorlandscape”并设置配置更改。