[android-beginners] Re: Align one image after another

2008-12-04 Thread Romain Guy

Use android:layout_toRightOf="@id/frame_bottomleft"

On Thu, Dec 4, 2008 at 2:31 AM, Stephen <[EMAIL PROTECTED]> wrote:
>
> Hi, I am trying to form a page with images background like html,
>
> the "frame_bottomleft" managed to align to the bottom and left of the
> layout, but I would like the "frame_lsk" to align on the right of the
> "frame_bottomleft" without overlapping.
>
> How would I do that?
>
>
> http://schemas.android.com/apk/res/
> android"
>android:layout_width="fill_parent"
>android:layout_height="fill_parent"
>>
>android:id="@+id/frame_bottomleft"
>android:layout_alignParentLeft="true"
>android:layout_alignParentBottom="true"
>android:layout_width="5px"
>android:layout_height="36px"
>android:background="@drawable/global_frame_bottomleft"
>/>
>android:id="@+id/frame_lsk"
>android:layout_alignLeft="@id/frame_bottomleft"
>android:layout_alignParentBottom="true"
>android:layout_width="53px"
>android:layout_height="29px"
>android:background="@drawable/global_frame_bottomleft2"
>/>
> 
>
> >
>



-- 
Romain Guy
www.curious-creature.org

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Align one image after another

2008-12-04 Thread Stephen


Thanks it works
On Dec 5, 6:30 am, Romain Guy <[EMAIL PROTECTED]> wrote:
> Use android:layout_toRightOf="@id/frame_bottomleft"
>
>
>
>
>
> On Thu, Dec 4, 2008 at 2:31 AM, Stephen <[EMAIL PROTECTED]> wrote:
>
> > Hi, I am trying to form a page with images background like html,
>
> > the "frame_bottomleft" managed to align to the bottom and left of the
> > layout, but I would like the "frame_lsk" to align on the right of the
> > "frame_bottomleft" without overlapping.
>
> > How would I do that?
>
> > http://schemas.android.com/apk/res/
> > android"
> >        android:layout_width="fill_parent"
> >    android:layout_height="fill_parent"
>
> >     >        android:id="@+id/frame_bottomleft"
> >        android:layout_alignParentLeft="true"
> >        android:layout_alignParentBottom="true"
> >        android:layout_width="5px"
> >        android:layout_height="36px"
> >        android:background="@drawable/global_frame_bottomleft"
> >    />
> >     >        android:id="@+id/frame_lsk"
> >        android:layout_alignLeft="@id/frame_bottomleft"
> >        android:layout_alignParentBottom="true"
> >        android:layout_width="53px"
> >        android:layout_height="29px"
> >        android:background="@drawable/global_frame_bottomleft2"
> >    />
> > 
>
> --
> Romain Guywww.curious-creature.org- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---