一个布局中的2个RelativeLayouts

时间:2012-07-31 19:32:11

标签: android events relativelayout behind

我决定在我的应用中使用2 RelativeLayouts,在左侧屏幕上为Layout的一部分Views使用一个Views,为孩子{{ 1}}向右走。

问题是我不知道如何用XML格式化它们,以便在我膨胀Layout时不包含中间空格。

This is what I want.

当我使用1 RelativeLayout时,中间的空格会被RelativeLayout填充,我无法触及它背后的任何内容。

非常感谢您阅读。

1 个答案:

答案 0 :(得分:2)

执行类似以下示例的操作。

这将使用LinearLayout创建RelativeLayouts layout_weight RelativeLayoutsRelativeLayouts,然后您可以随意填充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}}