我决定在我的应用中使用2 RelativeLayouts
,在左侧屏幕上为Layout
的一部分Views
使用一个Views
,为孩子{{ 1}}向右走。
问题是我不知道如何用XML格式化它们,以便在我膨胀Layout
时不包含中间空格。
当我使用1 RelativeLayout
时,中间的空格会被RelativeLayout
填充,我无法触及它背后的任何内容。
非常感谢您阅读。
答案 0 :(得分:2)
执行类似以下示例的操作。
这将使用LinearLayout
创建RelativeLayouts
layout_weight
RelativeLayouts
以RelativeLayouts
,然后您可以随意填充Buttons
。< / p>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" >
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TEST1" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" >
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TEST2" />
</RelativeLayout>
</LinearLayout>
只是示例的占位符。
{{1}}