Nativescript将androidElevation应用于堆栈布局

时间:2019-12-21 12:05:04

标签: nativescript

本机文档说androidElevation是stacklayout的有效属性,但是在我的ng项目中添加时不会显示。将相同的标高应用于标签也可以正常工作。是否需要添加一些其他属性?

<StackLayout margin="10" androidElevation="12">
  <Label text="sample1"></Label>
  <Label text="sample2"></Label>
</StackLayout>

1 个答案:

答案 0 :(得分:1)

androidElevation仅在您为视图设置背景色时有效。

<StackLayout margin="10" androidElevation="12" style="background-color: red;">
  <Label text="sample1"></Label>
  <Label text="sample2"></Label>
</StackLayout>