4

这是我的代码:

<TableRow
    android:layout_width="fill_parent" 
    android:layout_height="0dp"
    android:layout_weight="1"
    android:orientation="horizontal" > 

    <TextView
        android:id="@+id/TextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="This Button:"
        android:layout_marginLeft="14dp" />

    <ToggleButton
        android:id="@+id/toggleButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="ToggleButton" />


    <FrameLayout
        android:layout_width="0dp"
        android:layout_height="fill_parent" 
        android:layout_weight="0.9" >
    </FrameLayout> 
</TableRow>     

当我启动我的应用程序时,它看起来像这样:

  This Button:     Togglebutton

文本视图和切换按钮之间有很多空间。

4

2 回答 2

3

如果您不想要额外的空间,您应该将它们的宽度都设置为wrap_content并将它们包装在 LinearLayout 中:

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/TextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This Button:"
        android:layout_marginLeft="14dp" />

    <ToggleButton
        android:id="@+id/toggleButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="ToggleButton" />
</LinearLayout>
于 2013-07-14T17:55:14.963 回答
0

假设您想要缩小差距,请尝试android:gravity="right"使用 TextView。

如果这样做不行,请尝试android:layout_weight在 TextView 和 ToggleButton 上设置不同的值以平衡水平间距。

于 2013-07-14T17:54:15.690 回答