我一直在努力解决这个问题,但我似乎无法弄清楚。也许这里有人处理过类似的事情。
我试图在我的谷歌地图上放置一个按钮并使按钮透明。
这是我写的,但没有运气:
<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>
另外,如果您发现我的代码有任何问题,请随时指出。