Using an xml Layout for a Google Map Marker for Android(为 Android 的 Google 地图标记使用 xml 布局)
问题描述
I want to use a layout and not a drawable for my marker
I am using with Google Maps Api 2 for an Android app.
Like this:
Marker m = googleMap
.addMarker(new MarkerOptions()
.position(LOC)
.snippet(user)
.title(name)
.icon(BitmapDescriptorFactory.fromResource(R.layout.map_marker)));
However, it seems this is only designed for use from drawable
folder.
I simply what an image with a background where I can change colors based on marker type. This is the layout I want to use:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="50dp"
android:layout_height="50dp"
android:background="#222"
android:id="@+id/llMarker">
<ImageView
android:id="@+id/ivMarker"
android:layout_marginTop="5dp"
android:layout_width="40dp"
android:layout_height="40dp" />
</LinearLayout>
Pretty basic. How can I use this as a marker? (or at least replicate the end result that I am going for?)
The documents say you can use this:
fromResource (int resourceId)
So I assumed a layout might work.
UPDATE:
I have taken the concept from answer below and reworked some things; this still is not working; no errors. Just will not show image.
LayoutInflater inflater = (LayoutInflater) getActivity()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflater.inflate(R.layout.map_marker, null);
m = googleMap
.addMarker(new MarkerOptions()
.position(LOC)
.snippet(user)
.title(name)
.icon(BitmapDescriptorFactory.fromBitmap(loadBitmapFromView(v))));
// method
public static Bitmap loadBitmapFromView(View v) {
if (v.getMeasuredHeight() <= 0) {
v.measure(WindowManager.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.WRAP_CONTENT);
Bitmap b = Bitmap.createBitmap(v.getMeasuredWidth(), v.getMeasuredHeight(), Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(b);
v.layout(0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());
v.draw(c);
return b;
}
return null;
}
You cannot directly use a layout with BitmapDescriptorFactory.fromResource()
:
Creates a BitmapDescriptor using the resource id of an image.
However, you could draw the layout into a bitmap, and then use that. You'd need to:
- Inflate the layout from xml (with a
LayoutInflater
). - Change whatever properties you want (e.g. background color).
- Render this layout into a
Bitmap
, viaCanvas
, for example as described here. - Pass this bitmap into
BitmapDescriptorFactory.fromBitmap()
.
这篇关于为 Android 的 Google 地图标记使用 xml 布局的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为 Android 的 Google 地图标记使用 xml 布局


- Android viewpager检测滑动超出范围 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01