Re: [android-developers] Background and foreground image views

2012-03-09 Thread Put_tiMe
Ok, I tried the frame layout. And my XML file is something like this: FrameLayout xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=fill_parent android:layout_height=fill_parent ImageView android:scaleType=fitXY

Re: [android-developers] Background and foreground image views

2012-03-09 Thread Justin Anderson
Hmm... maybe it is just me, but this just seems WAY to complicated for what you are wanting to achieve... Why not just use a LinearLayout and set the background drawable on it, and then put the ImageView in that with what you want on top of it. Or, as I said before, you can play around with a

[android-developers] Background and foreground image views

2012-03-08 Thread Put_tiMe
I need to have a background and a foreground image views in a LinearLayout. Obviously the background has to be drawn before the foreground. How can I do it? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Background and foreground image views

2012-03-08 Thread sha m
FrameLayout helps to draw one view above another On Thu, Mar 8, 2012 at 6:10 PM, Put_tiMe putt...@gmail.com wrote: I need to have a background and a foreground image views in a LinearLayout. Obviously the background has to be drawn before the foreground. How can I do it? -- You

Re: [android-developers] Background and foreground image views

2012-03-08 Thread Justin Anderson
Or you can just display an image view and set the background and foreground to what you want them to be... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Mar 8, 2012 at 5:42 AM, sha m temptes...@gmail.com wrote: FrameLayout helps to draw one