NativeScript滑块不显示值

时间:2015-05-31 14:43:22

标签: telerik nativescript

我的xml

<Slider value="2" minValue="1" maxValue="10" />

和打印屏幕,为什么它不显示开始时的最小值和结束时的最大值以及用户滑动值。

enter image description here

1 个答案:

答案 0 :(得分:2)

只是因为Android滑块不显示最小/最大值,如documentation中所示。

但是,您可以在此下面创建一个布局来实现此目的。

<StackLayout orientation="horizontal">
    <Label text="1" />
    <Slider value="2" minValue="1" maxValue="10" />
    <Label text="10" />
</StackLayout>