gpt4 book ai didi

Nativescript:如何在Android上的标签内垂直对齐文本

转载 作者:行者123 更新时间:2023-12-04 16:25:37 26 4
gpt4 key购买 nike

默认情况下,标签内的文本在 iOS 上是垂直对齐的,但在 Android 上则不是。如何在 Android 上垂直居中(我有兴趣在 Label 内居中文本,而不是将标签包装在任何其他布局中以获得相同的效果)?

要了解我的意思,请在 iOS 和 Android 上运行下一个代码。

xml:

<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="onLoaded">
<Label text="test" />
</Page>

css:
Label {
width: 60;
height: 60;
text-align: center;
background-color: aquamarine;
border-radius: 30;
}

最佳答案

相应地将内边距设置为 (width - font-size)/2(对于大写或小写字母具有不同中心点的较小框,粗略的近似值可能不同)

例如

Label {
width: 60;
height: 60;
border-radius: 30;
text-align:center;
background-color: aquamarine;
padding: 15;
font-size: 20;
}

或更大尺寸的示例:
Label {
width: 200;
height: 200;
border-radius: 100;
text-align:center;
background-color: aquamarine;
padding: 80;
font-size: 20;
}

p.s 如果您将标签包装在 StackLayout 中,则不需要高度

例如
  <StackLayout>
<Label text="test" class="title"/>
</StackLayout>

Label {
width: 200;
border-radius: 100;
text-align:center;
background-color: aquamarine;
padding: 80;
font-size: 20;
}

关于Nativescript:如何在Android上的标签内垂直对齐文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39769640/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com