我有一个 PhoneGap 应用程序,我在其中使用 Bootstarp 进行布局和样式设置。问题是,当我在 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 生成的。我的目标是把它带到这个