Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要topMargin按Actionbar高度设置视图,以便在Actionbar. 我在我onCreateOptionsMenu的 中执行此操作,认为此时Actionbar已绘制。我的应用程序仅针对 API 14 及更高版本。
topMargin
Actionbar
onCreateOptionsMenu
使用 API 17 运行模拟器,getHeight()返回 96dp 的良好值。但是在使用 API 16 的模拟器上运行相同的代码时,返回的高度为零,可能是因为它还没有被绘制。
getHeight()
为什么这两个 API 之间会有差异?
读自:
?android:attr/actionBarSize
查看此帖子以获取更多信息:
ActionBar 的大小(以像素为单位)是多少?