减少数字选择器的高度

时间:2014-01-20 12:24:55

标签: android android-layout

我在我的活动中使用数字选择器。我想减少数字选择器的总高度。 代码是

        <NumberPicker
            android:id="@+id/minTemp"
            android:layout_width="0dp"
            android:layout_height="110dp"
            android:layout_marginRight="20dp"
            android:layout_weight="1"
            android:theme="@android:style/Theme.Light.NoTitleBar" />

        <NumberPicker
            android:id="@+id/maxTemp"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" />
    </TableRow>
它看起来像这样 enter image description here 那么如何覆盖数字选择器的高度??

0 个答案:

没有答案