1

我一直在努力解决这个问题,但我似乎无法弄清楚。也许这里有人处理过类似的事情。

我试图在我的谷歌地图上放置一个按钮并使按钮透明。

这是我写的,但没有运气:

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

另外,如果您发现我的代码有任何问题,请随时指出。

4

1 回答 1

0

android:alpha 在 API 11 中添加。使用您自己的透明背景图像(或 statelist 中的一组图像)。

如果这没有帮助,请发布屏幕截图。这可以使回答更容易。

于 2013-04-14T13:01:38.240 回答