对齐在谷歌地图标记段文本(Aligning the text in Google Maps Mark

2019-08-19 05:13发布

我想在我的代码片段的字符串,居中对齐。

另外,线路断路器(\ n)的代码段中被转换为空格,有没有插入线断路器的方法吗?

我的相关代码:

GoogleMap map = ...
map.addMarker(new MarkerOptions().position(pos)
        .title("title")
        .snippet("body \n and mind");

谢谢

Answer 1:

利用一些实例,以及从答案: 在地图V2定制数据的自定义信息窗口适配器 ,我已经遇到了以下解决方案:

marker.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <TextView
    android:id="@+id/info"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center" />

 </RelativeLayout>

Java的:

map.setInfoWindowAdapter(new InfoWindowAdapter() {

        @Override
        public View getInfoWindow(Marker arg0) {
            return null;
        }

        @Override
        public View getInfoContents(Marker marker) {

            View v = getLayoutInflater().inflate(R.layout.marker, null);

            TextView info= (TextView) v.findViewById(R.id.info);

            info.setText(marker.getPosition().toString());

            return v;
        }
    });


文章来源: Aligning the text in Google Maps Marker snippet