我正在尝试删除它在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。当我运行该应用程序时,半切换按钮消失了。
最佳答案
像这样更改您的文本视图:
android:layout_width="0dp"
android:layout_weight="1"
这将使textview展开,以在屏幕上其他所有内容摆放后填充可用空间。哪个应该让切换器占据所需的空间。
编辑
您可能需要将其包装在LinearLayout中,以使其像我建议的那样工作。
关于java - 文本 View 前后的xml中的空白,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10520453/