Android:如何将google mapview上的按钮设置为不透明

时间:2013-01-11 16:58:13

标签: android

到目前为止,我有一个谷歌mapview,我想在mapview上显示两个按钮。但是当我像这样添加它们时     

<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:apiKey="..."
    android:clickable="true" />

<Button
    android:id="@+id/etageplus"
    android:
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_marginRight="14dp"
    android:layout_marginTop="15dp"
    android:text="+" />

<Button
    android:id="@+id/etageminus"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/etageplus"
    android:layout_below="@+id/etageplus"
    android:text="-" />

......它们是透明的,我不希望它们透明。有人有想法吗?

1 个答案:

答案 0 :(得分:0)

您是否尝试过设置背景颜色或可绘制?颜色的第一个八位字节是透明度,FF是完全不透明的