I'm trying to get a vertical LinearLayout to display an imageview with a second imageview below it. I want the lower imageview to be the width of the top image view.

I'm trying the current layout xml:

            <LinearLayout
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center">   

                <ImageView
                android:id="@+id/image_view"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scaleType="centerInside"
                android:adjustViewBounds="true"
                android:layout_weight="1"
                />

                <LinearLayout
                android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"> 
                    <ImageView
                    android:id="@+id/spacer"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:background="@drawable/spacer"
                    />
                </LinearLayout>

            </LinearLayout>

The images will be displayed with a 'spacer' which is the full width of the screen, rather than the width of the image. The spacer is a fading edge graphic and I want it to be the same width as the image above it.

Note: the image for the top imageview is set programatically and could be a landscape or portrait image.

Anyone any thoughts on how to achieve this?

Thanks in advance!

link|improve this question

62% accept rate
Use a RelativeLayout instead... put both images in the same RelativeLayout... using multiple layouts the way you have done doesn't make sense. – androidworkz Feb 7 '11 at 18:17
Thanks for the reply. I don't see how using a relative layout will ensure that the lower image will be exactly the same width as the top image. Having tried it, with the relativelayout width being fill_parent, the upper imageview width being fill_parent and the lower imageview width being either fill_parent or wrap_content, I don't get the desired result. – r3mo Feb 7 '11 at 20:03
feedback

2 Answers

Hey r3mo use the following code you can get what you want to achieve

<RelativeLayout android:layout_height = "fill_parent" android:layout_width = "fill_parent">
    <ImageView android:layout_width = "wrap_content"
        android:layout_height = "wrap_content" android:id = "@+id/ImageView1"
        android:src = "@drawable/spacer"/>
    <ImageView android:layout_width = "wrap_content"
        android:layout_height = "wrap_content" android:id = "@+id/ImageView2"
        android:src = "@drawable/spacer"
        android:layout_below = "@+id/ImageView1"/>
</RelativeLayout>
link|improve this answer
feedback

Use Table Layout Instead of Relative and LinearLayout To achieve this, as Table Layout Automatically provide same column with to all rows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.