On CSS we can write :

<div style="float:right"> Text1 </div>
<div style="float:right"> Text2 </div>

by this way Text1 will appear on the right ..

I'm trying to do the same with LinearLayout , the View should appear from right to left :

<LinearLayout android:id="@+id/linearLayout1" android:layout_gravity="right" android:gravity="right"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:layout_weight="1" android:weightSum="2" android:orientation="horizontal">
        <!-- First Column should be on the right : Text1-->
        <LinearLayout android:id="@+id/linearLayout2"
            android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_gravity="right" android:gravity="right"
            android:layout_weight="1">...</LinearLayout>
        <!-- Second Column should be on the left : Text2 -->
        <LinearLayout android:id="@+id/linearLayout3"
            android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_gravity="right" android:gravity="right"
            android:layout_weight="1">...</LinearLayout>
</LinearLayout>

Thanks

link|improve this question

does it appear from top to bottom? – Caner Oct 13 '11 at 19:53
@LAS_VEGAS mmm,the layout in general does not work , so I'm just trying to simulate float:right using LinearLayout ? Thanks . – BugKiller Oct 13 '11 at 21:14
feedback

2 Answers

This may be it

<LinearLayout android:id="@+id/linearLayout1" android:layout_gravity="right" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:layout_weight="1" android:weightSum="2" android:orientation="horizontal"
    android:layout_gravity="right"
    >
    <!-- Second Column should be on the left : Text2 -->
    <LinearLayout android:id="@+id/linearLayout3"
        android:layout_width="wrap_content" android:layout_height="fill_parent" 
        android:layout_weight="1">...</LinearLayout>
    <!-- First Column should be on the right : Text1-->
    <LinearLayout android:id="@+id/linearLayout2"
        android:layout_width="wrap_content" android:layout_height="fill_parent"
        android:layout_weight="1">...</LinearLayout>

link|improve this answer
I think you have just swap Text2 with Text1 physically ? I can do that , but I don't want ? in CSS we can let the element float to right even if it is written first ! – BugKiller Oct 13 '11 at 21:23
I also put a gravity on the parent – Herb Oct 13 '11 at 21:24
you have layout_gravity="right" repeated twice in the parent's XML – Peter Ajtai Nov 1 '11 at 21:29
feedback

Just set the LinearLayout orientation to Horizontal

android:orientation="horizontal"
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.