up vote 1 down vote favorite
1
share [g+] share [fb]

If I don't include a background in my root layout then everything renders as I expect:

alt text

However, if I add JUST ONE LINE adding in a background then the layout goes completely haywire:

alt text

The relevant bit of the XML layout is:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width ="fill_parent"
    android:layout_height="fill_parent"
    android:paddingRight ="20dip" 
    android:paddingLeft  ="20dip"
    android:gravity      ="center_vertical"
    android:background   ="@drawable/main_background">

Quite literally the only difference between the above two screenshots is the inclusion of android:background="@drawable/main_background". I'll give you a cookie if you can help me out here :)

link|improve this question

77% accept rate
feedback

1 Answer

up vote 3 down vote accepted

As to why you are experiencing what you are with the background, it may be that your background image somehow gets caught up in the gravity, but that's just a guess.

As a workaround, wrap your whole thing in a FrameLayout. Make the first child of the FrameLayout be an ImageView with your background. Make the second child of the FrameLayout be your existing LinearLayout (sans android:background) attribute. Since FrameLayout and RelativeLayout allow stacking, this will cause your LinearLayout to appear above the image and should give you the visual effect you seek.

link|improve this answer
Man, that's annoying. I wish I had some inkling why what I was doing wasn't working. Your solution worked though, thanks. – fiXedd Nov 6 '09 at 20:30
I had a similar problem and spent a few hours wondering why. Never found out why Background images do that. – BahaiResearch.com Aug 2 '10 at 1:36
feedback

Your Answer

 
or
required, but never shown

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