Как настроить макет InfoWindow карт Google Android - PullRequest
0 голосов
/ 25 марта 2020

В моем приложении есть карта, и я хочу создать собственный макет для моего InfoWindow , как показано ниже:

enter image description here

Но я не могу сделать закругленную границу, как карточку. Пока у меня есть макет .

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
card_view:cardCornerRadius="4dp"
android:orientation="horizontal">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
           android:id="@+id/title"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:ellipsize="end"
           android:singleLine="true"
           android:textColor="#ff000000"
           android:textSize="14sp"
           android:textStyle="bold" />

        <TextView
           android:id="@+id/snippet"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:ellipsize="end"
           android:maxLines="3"
           android:singleLine="false"
           android:textColor="#ff7f7f7f"
           android:textSize="14sp" />
    </LinearLayout>
</androidx.cardview.widget.CardView>

Как мне сделать закругленную границу?

...