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

有帮助吗?

解决方案

Use a FrameLayout:

<FrameLayout
    ... >

    <ListView
        ... />

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

</FrameLayout>
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top