1

Galaxy Nexus 中状态栏、导航栏和标题栏的大小(以像素为单位)是多少?

我认为正是因为它们,我的背景图像(720x1280 像素)的高度被拉伸了。

我的布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splash" >
4

3 回答 3

3

这是你想要的?http://developer.android.com/design/style/metrics-grids.html

导航栏和操作栏的高度(或宽度)为 48dp。

如果要删除所有内容(按钮除外),可以将其添加到清单中的活动声明中

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
于 2012-06-20T16:01:44.437 回答
2

如果您指的是运行 Android 4.1 的 Nexus 7 平板电脑,底部的导航栏在视觉上看起来比上面消息中链接的开发指南中描述的 48 像素要深得多。分析屏幕截图表明,新的导航栏纵向为 75 像素。我仍在寻找最终的测量结果。

于 2012-08-22T12:10:50.547 回答
0

48 dp 与 48 px 不同。像 Nexus 这样的 xhdpi / 普通屏幕设备的 48 dps 与 96px 相同。

于 2013-03-20T12:27:49.310 回答