在GoogleMaps信息窗口中添加圆角

时间:2017-04-13 18:28:09

标签: android android-layout google-maps-api-3

这是我用来设置信息窗口样式的xml文件:

<!--?xml version="1.0" encoding="utf-8"?-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map_info_window"
    android:layout_width="match_parent"
    android:background="@color/light_grey"
    android:orientation="horizontal"
    android:layout_height="match_parent" >

    <TextView
        android:id="@+id/tv_location"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/white" />

</LinearLayout>

我不知道如何用圆角制作它。

1 个答案:

答案 0 :(得分:0)

试试这个:

布局中的

android:background="@drawable/border"

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map_info_window"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/border"
android:orientation="horizontal">

res/drawable/border.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@android:color/darker_gray" />
    <stroke
        android:width="3dip"
        android:color="#B1BCBE" />
    <corners android:radius="10dp" />
    <padding
        android:bottom="0dp"
        android:left="0dp"
        android:right="0dp"
        android:top="0dp" />
</shape>