0
到目前爲止,我有一個谷歌地圖視圖,我希望顯示的地圖視圖上有兩個按鈕。但是,當我將它們添加這樣 Android:我如何設置谷歌地圖視圖上的按鈕爲不透明
<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="-" />
...他們是透明的,我不想讓他們透明。有人有一個想法?