Shouldn't the orientation be "vertical"?

On Jan 12, 4:01 am, Brion Emde <[email protected]> wrote:
> You've got the ListView height set to fill_parent, which will fill the
> parent.
>
> I think you've got to add layout_weight="1" on your ImageView, so it
> will inform the layout that it wants space too.
>
> On Jan 11, 8:14 am, Marwal <[email protected]> wrote:
>
> > Hi,
>
> > I have an ListActivity that I wan't to add a logo to at the top above
> > the list but I'm unsuccessful. This is what my layout looks like at
> > the moment.
>
> > <?xml version="1.0" encoding="utf-8"?>
> > <LinearLayout
> >     xmlns:android="http://schemas.android.com/apk/res/android";
> >     android:orientation="horizontal"
> >     android:layout_width="fill_parent"
> >     android:layout_height="fill_parent">
> >     <ImageView
> >         android:id="@+id/logo"
> >         android:layout_width="fill_parent"
> >         android:layout_height="wrap_content" />
> >     <ListView
> >         android:id="@android:id/list"
> >         android:layout_width="fill_parent"
> >         android:layout_height="fill_parent"
> >         android:drawSelectorOnTop="false">
> >     </ListView>
> >     <TextView
> >         android:id="@+id/empty"
> >         android:layout_width="fill_parent"
> >         android:layout_height="fill_parent"
> >         android:text="@string/list_empty" />
> > </LinearLayout>
>
> > Then I add an drawable to the ImageView logo in onCreate. I've managed
> > to show either the ListView or the ImageView but never both of them in
> > the same LinearLayout.
>
> > Is it possible to add other views together with a ListView?
>
> > /Martin
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to