ImageButton
の上に を配置していMapView
ます。はImageButton
、背景が透明な保存アイコンです。Windows Phone 7 アプリでは見栄えがしますが、Android アプリでは背景が透明ではありません。ご覧のとおり、透明な背景は大きな正方形のように見えますButton
。
背景を本当に透明にするにはどうすればよいですか? 以下に貼り付けた画像とxml。ありがとう、ゲイリー
<?xml version="1.0" encoding="utf-8"?>
<TextView
android:id="@+id/tvMAP"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Map"
style="@style/bigtype" />
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="mykeyhere"
android:clickable="true" />
<ImageButton
android:id="@+id/ImageButton01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/save_white" />
</RelativeLayout>