変更私は試してみて、私のPhoneGapのアプリ内で画面の向きをロックするプラグインを使用しました:私のアプリページ内PhoneGapの - 防止画面の向きは
cordova-plugin-screen-orientation
私は次のコード抜粋:
を// Once DOM is loaded...
$(document).on('pagecreate', function() {
window.screen.lockOrientation('portrait'); // Seems to set variable but not LOCK screen?
var orient = screen.orientation; // Works
alert(orient); // Works
window.addEventListener("orientationchange", function(){ // Works
alert(screen.orientation); // e.g. portrait // Works
});
... Other code etc.
私の電話機を回転させると、プラグインは正しくインストールされているように見えます。問題は、画面をロックしていない機能があるようですか?
ご迷惑をおかけして申し訳ございません。
アプリ全体で向きを固定しますか? –
@ShashankAgrawal - はい私はアプリ全体にロックするために探しています。さらにコメントの下で、私はこのaviのconfig.xmlファイルを実行しようとしましたが、運はありません。 – Wayne