Android:减少NumberPicker的边距

时间:2015-02-08 11:05:02

标签: android numberpicker

有没有办法从XML调整NumberPicker的边距?

实际上似乎不可能。

这是我的结果,选择器上有一个文本,但不能看到边距太大。

enter image description here

我试图重新缩放它,但它只是重新调整内部图片,而不是整个布局。

<NumberPicker
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleX="0.5"
            android:scaleY="0.5"
            android:id="@+id/numMonth"/>

2 个答案:

答案 0 :(得分:0)

问题在于您将比例设置为0.5。将其设置为1或更好将其删除。

                android:scaleX="1"
                android:scaleY="1"

答案 1 :(得分:0)

我使用的是API 19。 使用API​​ 21,它甚至无法调整大小,因此我将创建自己的对象。