TextView和ImageView的对齐方式

时间:2013-04-22 19:04:44

标签: android android-linearlayout android-imageview textview

我试图在一行中设置文本和图像(小图像)。要求是文本应该左对齐,Image应该右对齐。如果文本很大,那么它不应该与图像重叠,而应该是2行或更多行。 我正在尝试使用以下代码,但它不起作用。第一个图像没有右对齐,如果文字很大,图像根本不会出现,只有文字有多行:

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <TextView
                    android:id="@+id/answerTextView"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="left"
                    android:focusable="true"
                    android:gravity="left"
                    android:textSize="@dimen/answer_size"
                    android:textStyle="bold" >
                </TextView>

                <View
                    android:layout_width="3dip"
                    android:layout_height="wrap_content" >
                </View>

                <ImageView
                    android:id="@+id/congratsImageView"
                    android:layout_width="@dimen/congrats_img_width"
                    android:layout_height="@dimen/congrats_img_height"
                    android:layout_gravity="right"
                    android:adjustViewBounds="false"
                    android:scaleType="fitXY" >
                </ImageView>
            </LinearLayout>

我也试过了RelativeLayout,在这种情况下,Image和Text都左对齐,Image与左边的文本重叠。 请注意,LinearLayout上方和下方还有其他字段,我在运行时从Java方法中查看图像。 任何帮助将受到高度赞赏。

2 个答案:

答案 0 :(得分:0)

使用 android:weight 属性为它们提供相等的空格。

看,我修改了你的代码。它将100%工作使用它。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"        
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/answerTextView"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="left"
            android:layout_weight="1"
            android:focusable="true"
            android:gravity="left"
            android:text="Hello world.Hello world.Hello world.Hello world.Hello world.Hello world. "
            android:textColor="@android:color/white"
            android:textStyle="bold" >
        </TextView>

        <View
            android:layout_width="3dip"
            android:layout_height="wrap_content" >
        </View>

        <ImageView
            android:id="@+id/congratsImageView"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:layout_weight="1"
            android:adjustViewBounds="false"
            android:scaleType="fitXY"
            android:src="@drawable/ic_launcher" >
        </ImageView>
    </LinearLayout>

</LinearLayout>

答案 1 :(得分:0)

请尝试以下代码 -

    

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"        
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/answerTextView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:focusable="true"
        android:gravity="left"
        android:text="Hello world.Hello world.Hello world.Hello world.Hello world.Hello world. "
        android:textColor="@android:color/white"
        android:textStyle="bold" >
    </TextView>

    <View
        android:layout_width="3dip"
        android:layout_height="wrap_content" >
    </View>

    <ImageView
        android:id="@+id/congratsImageView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" >
    </ImageView>
</LinearLayout>

</LinearLayout>