您将需要更改主要的 Phonegap Activity 类。首先从 AndroidManifest 文件中删除这一行:
android:screenOrientation="portrait"
我们还需要:
android:configChanges="orientation|keyboardHidden"
不幸的是,我们不能在 screenOrientation 中配置一个以上的方向模式。因此,我们将通过 java 代码对其进行更改。
这是一个工作代码示例:
package com.roadrunner.mobile21;
import android.content.pm.ActivityInfo;
import android.content.res.Configuration;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.view.Display;
import android.view.OrientationEventListener;
import android.view.Surface;
import com.phonegap.*;
public class RoadRunnerActivity extends DroidGap {
OrientationEventListener myOrientationEventListener;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
myOrientationEventListener = new OrientationEventListener(this, SensorManager.SENSOR_DELAY_NORMAL){
@Override
public void onOrientationChanged(int arg0) {
Display display;
display = getWindow().getWindowManager().getDefaultDisplay();
int rotation = display.getRotation();
if(rotation == Surface.ROTATION_0 || rotation == Surface.ROTATION_90) {
unlockScreenOrientation();
}
}
};
if (myOrientationEventListener.canDetectOrientation()){
myOrientationEventListener.enable();
} else{
finish();
}
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
Display display;
display = getWindow().getWindowManager().getDefaultDisplay();
int rotation = display.getRotation();
if(rotation == Surface.ROTATION_180 || rotation == Surface.ROTATION_270) {
lockCurrentScreenOrientation();
}
}
private void lockCurrentScreenOrientation() {
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
private void unlockScreenOrientation() {
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_USER);
}
}
- 也有可能通过 css 改变屏幕方向。我不喜欢它,因为它有点马车,但在这里你可以找到更多关于它的信息。这是一种最简单的方法,但您需要玩一点才能使其发挥作用。
这很容易做到:
$(window).bind("orientationchange", function(){
var orientation = window.orientation;
var new_orientation = (orientation) ? 0 : 180 + orientation;
$('body').css({
"-webkit-transform": "rotate(" + new_orientation + "deg)"
});
});
您将需要更改公式以仅适应 0 度和 90 度方向。