RelativeLayout重心不起作用

时间:2012-06-05 20:59:14

标签: android center android-relativelayout gravity

我试图将RelativeLayout中的几个视图水平居中作为基础。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_horizontal"
    android:background="@android:color/transparent" >

这不起作用。我为其中一个视图设置了centerInParenttrue,这确实有效。但是,我无法使用此解决方案,因为我有两个并排的视图需要集中在一起。试图优化这个,所以我想避免嵌套布局,特别是线性,在彼此内部。

有什么明显的东西我不见了吗?我认为这个属性适用于这种情况。

4 个答案:

答案 0 :(得分:8)

我在没有使用嵌套ViewGroups的情况下回答了涉及三个视图的类似问题。

https://stackoverflow.com/a/13279846/1011746

这在API 11中进行了测试。

对于两个视图水平情况:

<RelativeLayout
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:gravity="center"
  android:background="@android:color/black"
  >
  <Button
    android:id="@+id/apply"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="APPLY"
    android:textSize="20sp"
    />
  <Button
    android:id="@+id/undo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="UNDO"
    android:textSize="20sp"
    android:layout_toRightOf="@id/apply"
    />
</RelativeLayout>

对于两个视图垂直情况:

<RelativeLayout
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:gravity="center"
  android:background="@android:color/black"
  >
  <Button
    android:id="@+id/apply"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="APPLY"
    android:textSize="20sp"
    />
  <Button
    android:id="@+id/undo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="UNDO"
    android:textSize="20sp"
    android:layout_below="@id/apply"
    />
</RelativeLayout>

答案 1 :(得分:5)

您需要将多个布局嵌套在一起。要将某些内容置于RelativeLayout中,您可以在子项上使用android:layout_centerInParent="true"。如果你试图让几个孩子居中,那么他们最终会在彼此之下/之上。

因此,例如,您可以将具有两个视图的LinearLayout用作RelativeLayout的子视图,其中LinearLayout具有android:orientation="horizontal"android:layout_centerInParent="true"。 LinearLayout现在应该在RelativeLayout中居中,两个孩子彼此相邻。

答案 2 :(得分:2)

将两个视图包裹在LinearLayout中,然后将LinearLayout置于RelativeLayout中心,就像您对单个TextView所做的那样。

答案 3 :(得分:1)

所以我对这个问题的解决方法只是为了利用textview的复合drawable功能。我只是删除了按钮并使用drawableRight来显示搜索图标。