1

如何通过 Google 地点操作将一个地名添加为英语的主要地名,然后为同一地点添加不同语言的不同名称。在不同的语言中,它可能是主要的,也可能不是主要的。或者谷歌为我们做同样的事情。

谢谢。

4

1 回答 1

0

您可以为具有 2 行名称的标记制作自己的 WindowAdapter(例如)

这是 MyInfoWINdowAdapter

public class MyInfoWindowAdapter implements InfoWindowAdapter {

    private final View mView;

    public MyInfoWindowAdapter(Activity activity) {

        mView = activity.getLayoutInflater().inflate(R.layout.custom_info_window, null);
    }
    @Override
    public View getInfoContents(Marker marker) {

        String title = marker.getTitle();
        final String snippet = marker.getSnippet();
        final TextView titleUi1 = (TextView) mView.findViewById(R.id.title);
        final TextView titleUi2 = (TextView) mView.findViewById(R.id.title2);
        titleUi1.setText(title);
        titleUi2.setText("Second name");
        return mView;
    }

    @Override
    public View getInfoWindow(Marker marker) {

        return null;
    }
}

custom_info_window:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:ellipsize="end"
        android:paddingBottom="@dimen/padding_small"
        android:singleLine="true"
        android:textColor="@color/map_info_title"
        android:textSize="@dimen/map_info_window_text"
        android:textStyle="bold" />
    <TextView
        android:id="@+id/title2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:ellipsize="end"
        android:paddingBottom="@dimen/padding_small"
        android:singleLine="true"
        android:textColor="@color/map_info_title"
        android:textSize="@dimen/map_info_window_text"
        android:textStyle="bold" />
    <TextView
        android:id="@+id/snippet"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/map_info_snippet"
        android:textSize="@dimen/map_info_window_text" />
</LinearLayout>

在 Mapfragment 上,将其添加到 onCreate

mMap.setInfoWindowAdapter(new MyInfoWindowAdapter(getActivity()));
于 2013-05-14T11:55:45.793 回答