4

我对 LinearLayout 中的对齐有一点问题。

我试图让前两个元素左对齐,第三个元素位于屏幕中央。

这是我的代码(从 id、text、src 中清除):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/color_background"
    >

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
        </ImageView>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
        </TextView>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal">
        </TextView>
    </LinearLayout>
</LinearLayout>

替代文字 http://img807.imageshack.us/img807/5953/imageg.png

这是我想要做的,左边是粉红色和黄色,中间是红色

pink = imageview
yellow = 1st texview
red = 2nd textview

任何想法 ?

4

2 回答 2

6

所以你需要使用的代码如下

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content">
    <ImageView
        android:layout_width="wrap_content"
        android:id="@+id/image"    
        android:layout_height="wrap_content"/>
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/image"/>
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"/>
</RelativeLayout>
于 2010-08-08T08:17:59.283 回答
1

使用 aRelativeLayout而不是 a LinearLayout。拥有粉红色只是一个正常的孩子。有黄色的用途android:layout_toRightOf把它放在粉红色的右边。有红用android:layout_centerHorizontal="true"

于 2010-07-25T20:21:38.837 回答