4

我想要这样的东西:
在此处输入图像描述

我使用了 android relativelayout,它的标签如下: android:layout_centerHorizo​​ntal="true" ,这给了我这个:

在此处输入图像描述

我与其他标签一起播放并将它们组合起来,但没有成功。

那么有没有办法做到这一点?

4

4 回答 4

10

尝试这个:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="20dp"
    android:layout_height="match_parent"
    android:layout_centerHorizontal="true"
    android:background="@android:color/black" >
</LinearLayout>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@+id/linearLayout1"
    android:text="YOUR TEXT" />

</RelativeLayout>
于 2013-09-11T08:15:02.837 回答
3

尝试这个

<RelativeLayout 
        android:layout_width="fill_parent"
        android:background="#FFFFFF"
        android:layout_height="wrap_content">


        <View 
            android:layout_width="10dp"
            android:layout_height="1dp"
            android:layout_centerInParent="true"
            android:id="@+id/dummy"
            />
        <TextView 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="SDADASd"
            android:layout_centerVertical="true"
            android:layout_toRightOf="@id/dummy"
            android:textColor="#000000"

            />
    </RelativeLayout>
于 2013-09-11T08:20:46.207 回答
2
      or go with linearlayout...
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:gravity="right"
        android:layout_weight="1" >
        <View 
            android:layout_width="10dp"
            android:background="@android:color/black"
            android:layout_height="match_parent"/>
    </LinearLayout>

    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/linearLayout1"
        android:text="YOUR TEXT" />
</LinearLayout>
于 2013-09-17T13:02:08.270 回答
1

在 RelativeLayout 的中心添加一个透明视图,并使用

height="match_parent"
width="15dp"//(it doesn't matter much)

然后给你相对于这个视图的布局参数,比如

android:layout_alignRight="@+id/yourView"
于 2013-09-11T08:14:54.320 回答