Venkat,

This is the approach I used ...
except I aligning to the right of the image and further using multiple
rows with alignments.
This should work if you change the alignment to the left in your case.

<TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/
android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <ImageView
    android:id="@+id/icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/icon">
    </ImageView>


   <TextView android:id="@+id/row"
        android:layout_marginTop="1dip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/icon"
        android:textSize="15sp"
        android:textStyle="bold"/>


        <TextView android:id="@+id/count"
       android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/row"
        android:layout_alignLeft="@id/row"
        android:paddingBottom="4dip"
        android:includeFontPadding="false"
        android:textSize="15sp"
        android:textStyle="normal" />

</TwoLineListItem>

On Nov 10, 4:35 am, venkat <[EMAIL PROTECTED]> wrote:
> Hi All
>
>             I am new to the Andoid.how to place the image on right
> side of the list box, possibility is tere or not
> Thanks in advance
>
> thanks
> venkat

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@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-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to