显示infowindow android Maps

时间:2014-07-29 01:45:54

标签: android google-maps

如何在地图加载时显示标记信息窗口?当我点击地图名称时,一个新的活动开始在地图加载的地方。它显示标记,问题是我想自动显示我创建的自定义信息窗口。这是我的代码如下:我将为那些可以修复的人标记这个答案这个。感谢。

if (nameList.get(i).equals(selected)){

            Marker marker = map.addMarker(new MarkerOptions()
             .title(nameList.get(i))
             .snippet(addressList.get(i))
             .icon(BitmapDescriptorFactory.fromResource(R.drawable.marker_location))
             .position(new LatLng(latList.get(i), lngList.get(i))));

            marker.showInfoWindow();

            //Set Custom InfoWindow
            map.setInfoWindowAdapter(new InfoWindowAdapter() {


            @Override
            public View getInfoWindow(Marker arg0) {



                return null;
            }

            @Override
            public View getInfoContents(Marker marker) {

                View myContentsView = getLayoutInflater().inflate(R.layout.map_info, null);

                TextView tvTitle = ((TextView)myContentsView.findViewById(R.id.title));
                tvTitle.setText(marker.getTitle());

                TextView tvSnippet = ((TextView)myContentsView.findViewById(R.id.snippet));
                tvSnippet.setText(marker.getSnippet());

                TextView infoSnippet = (TextView)myContentsView.findViewById(R.id.moreinfo);
                infoSnippet.setText("Click for more details.");

                return myContentsView;
            }
        });

            //Open New Activity
            map.setOnInfoWindowClickListener(new OnInfoWindowClickListener() {

            @Override
            public void onInfoWindowClick(Marker marker) {

                Intent intent = new Intent(SelectedPlaceActivity.this, PlaceDescriptionActivity.class);
                intent.putExtra("placetitle", marker.getTitle().toString());
                intent.putExtra("snippet", marker.getSnippet().toString());
                startActivity(intent);

                }
            });


        }

2 个答案:

答案 0 :(得分:2)

您似乎需要一个InfoWindow适配器。请参阅以下示例:

map.setInfoWindowAdapter(new InfoWindowAdapter(){
    // Use default InfoWindow frame
    @Override
    public View getInfoWindow(Marker marker) {              
        return null;
    }           

    // Defines the contents of the InfoWindow
    @Override
    public View getInfoContents(Marker marker) {

        // Getting view from the layout file info_window_layout
        View v = getLayoutInflater().inflate(R.layout.custom_info_window, null);

        // Getting reference to the TextView to set title
        TextView note = (TextView) v.findViewById(R.id.note);
        note.setText(marker.getTitle() );

        return v;
    }
});

如您所见,您需要创建自定义layout。在我的例子中:

<?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/note"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:textColor="#000000"/>

    <ImageButton android:id="@+id/takeMeThere"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/note"
        android:contentDescription="@string/directions"
        android:src="@drawable/ic_action_directions"
        android:background="@null"/>
</RelativeLayout>

希望这有帮助

答案 1 :(得分:0)

根据Google Maps for Android V2的文件:

  

信息窗口允许您在用户显示信息时显示信息   点击地图上的标记。默认情况下,会显示信息窗口   如果标记具有标题集,则用户点击标记。只有一个信息   窗口一次显示。如果用户点击另一个标记,则   当前窗口将被隐藏,新信息窗口将被隐藏   显示。您可以通过调用以编程方式显示信息窗口   目标标记上的 showInfoWindow() 。可以隐藏信息窗口   调用 hideInfoWindow()