如何删除android TimePicker周围的空间

时间:2014-09-07 03:33:58

标签: java android padding timepicker

我无法移除TimePicker周围的空间: 我将TimePicker缩小到40%,但TimePicker周围有很多空间,我无法删除。

我正在使用translationX和translationY来定位TimePicker。

请在下面找到xml(布局)代码:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:orientation="vertical" >

    <TimePicker
        android:id="@+id/timePicker1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scaleX="0.4"
        android:scaleY="0.4"
        android:translationX="-60dp"
        android:translationY="-20dp"
        android:background="#FFDDAA00" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Below the time spinner" />

</LinearLayout>

请在下面的模拟器截图中找到: http://www.pixentral.com/show.php?picture=1T9y7rt22pzeDwounqG6i5z9YgRMYA

正如您所看到的,TimePicker与其下方文本之间的差距是我无法删除的空间。 我设置了TimePicker的背景,以突出显示实际的TimePicker及其周围的空间。

1 个答案:

答案 0 :(得分:-1)

尝试类似 -

android:layout_marginTop="-10dp"

android:layout_marginLeft="-10dp"

根据您的要求减少价值。


编辑:

尝试从活动中删除填充和边距。