非常大的NumberPicker

时间:2013-12-13 08:08:17

标签: java android xml user-interface android-fragments

这是我的布局XML文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <ScrollView
        android:id="@+id/scroller"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >

        <TableLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <TableRow
                android:id="@+id/tableRow1"
                android:layout_width="fill_parent"
                android:layout_height="50dp" >

                <RadioButton
                    android:id="@+id/radioButton1"
                    android:layout_width="wrap_content"
                    android:layout_height="50dp"
                    android:drawableRight="@android:drawable/btn_radio"
                    android:button="@null"
                    android:textSize="12sp"
                    android:text="RadioButton" />

                <NumberPicker
                    android:id="@+id/numberPicker1"
                    android:layout_width="wrap_content"
                    android:layout_height="50dp" />

            </TableRow>

            <TableRow
                android:id="@+id/tableRow2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" >

            </TableRow>

            <TableRow
                android:id="@+id/tableRow3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" >
            </TableRow>

            <TableRow
                android:id="@+id/tableRow4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" >
            </TableRow>
        </TableLayout>

    </ScrollView>



</RelativeLayout>

这里有一个大问题。请参阅下图,了解NumberPicker的大小!

enter image description here

我需要的NumberPicker如下所示。

enter image description here

我试图设置高度并修复,但似乎没有太大影响。此设计适用于手机和平板电脑。如何使这个NumberPicker变小,如上图所示?

2 个答案:

答案 0 :(得分:1)

使用

android:scaleX="0.5"
android:scaleY="0.5"

并使用值。

答案 1 :(得分:0)

你可以创建自己的自定义numberpickerview.or,否则你可以使用wheelpicker(与iphone相同),设计将会很渺茫。