私はしばらくこれと格闘してきましたが、理解できないようです。たぶん、誰かがここに似たようなことを扱ったことがあります。
Google マップの上にボタンを配置して、ボタンを透明にしようとしています。
ここに私が書いたものがありますが、運はありません:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:keepScreenOn="true" >
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment"/>
<LinearLayout
android:layout_width="40dp"
android:layout_height="match_parent"
android:layout_gravity="right"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="40dp"
android:alpha=".30"
android:text="@string/button1_label"
android:background="@android:drawable/btn_default" />
</LinearLayout>
また、私のコードに問題がある場合は、遠慮なく指摘してください。