Pergunta

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...

Foi útil?

Solução

Use a FrameLayout:

<FrameLayout
    ... >

    <ListView
        ... />

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

</FrameLayout>
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top