レイアウトとスタイリングに Bootstarp を使用する PhoneGap アプリケーションがあります。問題は、Nexus 4 シミュレーター (解像度 768x1280) でアプリケーションを実行すると、Bootstrap がそれをデスクトップとして扱い、右側のドロップダウン メニューではなく小さなナビゲーション バーをヘッダーとして表示することです。私の index.html ヘッダーは次のとおりです。
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.css" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
</head>
ほとんどが PhoneGap によって生成されたものです。私の目標は、これを実現することです