在textview之前和之前的xml中的空白

时间:2012-05-09 16:42:56

标签: java android xml

enter image description here 我正在尝试删除它在textview之前和之后自动创建的空格。怎么可能?

       <TableRow
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:background="@drawable/ripetisfondo"
            android:padding="1dp" >

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:shadowColor="#000000"
                android:shadowDx="1"
                android:shadowDy="1"
                android:shadowRadius="2"
                android:text="@string/titolo1"
                android:textColor="#FFFFFF"
                android:textSize="15dp"
                android:textStyle="bold" />

            <ToggleButton
                android:id="@+id/toggleButton1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center" />
        </TableRow>

该截图来自Eclipse。当我运行应用程序时,半切换按钮消失。

3 个答案:

答案 0 :(得分:1)

像这样更改文本视图:

android:layout_width="0dp"
android:layout_weight="1"

这将使textview展开以填充可用空间 AFTER 屏幕上显示的所有内容。哪个应该让切换占用它所需的空间。

修改

您可能需要将其包装在LinearLayout中,以使其像我建议的那样工作。

答案 1 :(得分:0)

删除android:layout_gravity="center"。这就是它居中的原因。

答案 2 :(得分:0)

您将XML TextView重力设置为中心,这就是它在中心的原因。将其设置为您想要的或删除它。