フレーム レイアウトに 2 つのリスト ビューがあります。1 つのオーバーレイをもう 1 つのオーバーレイにしたいのですが、背景が透明ではありません。私はこれをしました
<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>
しかし、正しく動作しません。ありがとうございました