Niestandardowe infowindow z google maps api v2

Mogę dostosować zawartość infoWindow za pomocą prostego bloku kodu:

 private GoogleMap mMap;
 mMap.setInfoWindowAdapter(new InfoWindowAdapter() {

        @Override
        public View getInfoWindow(Marker arg0) {
            return null;
        }

        @Override
        public View getInfoContents(Marker arg0) {

            View v = getLayoutInflater().inflate(R.layout.custom_infowindow, null);
            return v;

        }
    });

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#55000000" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:text="HELLO"
        android:textColor="#FF0000"/>

</LinearLayout>

Ale to zmienia tylko treść, a nie samo infoWindow. Nadal pozostaje biały z małym cieniem na dole, a teraz widoczny jest czarny tekst CZEŚĆ z czarnym pasem. Chcę zmienić domyślne infoWindow na przezroczysty czarny prostokąt. Jak mogę to zrobić?

questionAnswers(4)

yourAnswerToTheQuestion