Pregunta

I want to put a click-able gift icon in the left of Listview like this...!enter image description here

I googled never find any solution for this. . Any help or suggestion my dear Friends...

¿Fue útil?

Solución

Use a FrameLayout:

<FrameLayout
    ... >

    <ListView
        ... />

    <Button
        android:layout_gravity="center_vertical|right"
        ... />

</FrameLayout>
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top