gpt4 book ai didi

android - 在 Google map 中使用 View 而不是标记

转载 作者:太空狗 更新时间:2023-10-29 14:50:41 24 4
gpt4 key购买 nike

可以在 Google Maps API v2 中使用自定义 View 而不是标记吗?遗憾的是,Google 不允许我们使用 View 自定义我们的标记(使用 ImageView 、 TextView 等的相对布局),所以可以膨胀 View ,然后将该 View 放在 map 中的特定位置吗?

最佳答案

您可以使用 IconGenerator 来实现这一点。

IconGenerator iconGenerator = new IconGenerator(context);
iconGenerator.setBackground(context.getDrawable(R.drawable.bg_custom_marker));
View inflatedView = View.inflate(context, R.layout.marker_custom, null);
iconGenerator.setContentView(inflatedView);
Marker marker = map.addMarker(
new MarkerOptions()
.position(new LatLng(-34.397, 150.644))
.icon(BitmapDescriptorFactory.fromBitmap(iconGenerator.makeIcon())));

现在我们需要 marker_custom View 和 bg_custom_marker 可绘制对象。

ma​​rker_custom.xml

<androidx.constraintlayout.widget.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="match_parent"
android:layout_height="match_parent"
android:backgroundTint="@android:color/white"
tools:ignore="RtlHardcoded">

<TextView
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I'm a custom view :)" />

</androidx.constraintlayout.widget.ConstraintLayout>

bg_custom_marker.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#000000" />
<stroke
android:width="1dp"
android:color="#FFFFFF" />
<corners android:radius="5dp" />
<padding
android:bottom="5dp"
android:left="5dp"
android:right="5dp"
android:top="5dp" />
</shape>

看起来像下面这样:

Custom Marker

编辑:iconGenerator.setBackground(null); 可能更灵活。

关于android - 在 Google map 中使用 View 而不是标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35655408/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com