This is an overview of the most common usage of AbsoluteLayout. For more information about the available properties, methods, or events, head over to the complete API documentation for AbsoluteLayout.
O container AbsoluteLayout é o container de layout mais simples do NativeScript. Ele usa coordenadas absolutas do topo e da esquerda do container para posicionar os filhos. O AbsoluteLayout não aplicará nenhum restrição de layout nos filhos e também não redimensionará em tempo de execução quando o seu tamanho mudar.
<AbsoluteLayout backgroundColor="#3c495e">
<Label text="10,10" left="10" top="10" width="100" height="100" backgroundColor="#43b883"/>
<Label text="120,10" left="120" top="10" width="100" height="100" backgroundColor="#43b883"/>
<Label text="10,120" left="10" top="120" width="100" height="100" backgroundColor="#43b883"/>
<Label text="120,120" left="120" top="120" width="100" height="100" backgroundColor="#43b883"/>
</AbsoluteLayout>
<AbsoluteLayout backgroundColor="#3c495e">
<Label text="10,10" left="10" top="10" width="100" height="100" backgroundColor="#289062"/>
<Label text="30,40" left="30" top="40" width="100" height="100" backgroundColor="#43b883"/>
</AbsoluteLayout>
AbsoluteLayout não tem propriedades.
Quando um elemento é filho direto de um AbsoluteLayout, as seguintes propriedades obtêm um significado:
nome | tipo | descrição |
---|---|---|
top | Number | Um valor representando a distância do topo do AbsoluteLayout pai |
left | Number | Um valor representando a distância da esquerda do AbsoluteLayout pai |