Ho I have two list view on a frame layout. I want one overlay the other and it has not a transparent background. I have do this
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/autocompleteCompany"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true"
android:paddingLeft="30dip"
>
</ListView>
<ListView
android:id="@+id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</ListView>
</FrameLayout>
but don't work correctly. Thankyou