Android:来自自定义CardView的地图标记,带有圆角半径

时间:2018-03-29 12:09:57

标签: android xamarin.android maps google-maps-markers android-cardview

我尝试从包含CardView内部图像的自定义视图创建地图标记。为此,我使用Canvas将视图绘制为位图。

结果有问题:标记将图像显示为正方形。什么可能导致CardView失去角落半径?

以下是标记自定义视图的XML布局文件:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="56dp"
    android:layout_height="69dp">

  <ImageView
      android:id="@+id/discovertab_marker_pin_imageview"
      android:layout_width="56dp"
      android:layout_height="69dp"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      app:srcCompat="@drawable/mappingreen" />

  <android.support.v7.widget.CardView
      android:layout_width="50dp"
      android:layout_height="50dp"
      android:layout_marginEnd="3dp"
      android:layout_marginStart="3dp"
      android:layout_marginTop="3dp"
      app:cardBackgroundColor="@color/colorPrimary"
      app:cardCornerRadius="25dp"
      app:cardElevation="0dp"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toTopOf="parent">

    <ImageView
        android:id="@+id/discovertab_marker_profile_imageview"
        android:layout_width="50dp"
        android:layout_height="50dp" />

  </android.support.v7.widget.CardView>
</android.support.constraint.ConstraintLayout>

0 个答案:

没有答案