Android Studio - layout_height + x像素

时间:2016-10-18 17:59:58

标签: android xml android-studio

对不起伙计们。我是使用android studio的新手。我想知道是否可以将工具栏的布局高度设置为

  

?ATTR / actionBarSize   + 15px

提前致谢

  

机器人:?layout_height =" ATTR / actionBarSize + 15px的"

对我不起作用。再次感谢

1 个答案:

答案 0 :(得分:2)

没有。无法像这样在XML中进行设置。为此,你需要用Java来做。

为此,您执行以下问题中显示的方法,以获得actionBarSizehttps://stackoverflow.com/a/13216807/906362

然后将其设置为您想要的视图:

view.getLayoutParams().height = actionBarHeight + 15;