在Google Maps Marker代码段中对齐文本

时间:2013-04-03 09:13:04

标签: android google-maps line-breaks marker text-align

我希望我的代码段中的字符串与中心对齐。

此外,片段中的断路器(\ n)转换为空格,有没有办法插入断路器?

我的相关代码:

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

由于

1 个答案:

答案 0 :(得分:12)

使用一些示例以及来自custom info window adapter with custom data in map 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>

爪哇:

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;
        }
    });