Back to project page campus.
The source code is released under:
GNU General Public License
If you think the Android project campus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package lecho.app.campus.adapter; //ww w .ja va 2 s . c o m import lecho.app.campus.R; import android.content.Context; import android.view.View; import com.google.android.gms.maps.GoogleMap.InfoWindowAdapter; import com.google.android.gms.maps.model.Marker; public class MarkerInfoWindowAdapter implements InfoWindowAdapter { private Context mContext; public MarkerInfoWindowAdapter(Context context) { mContext = context; } @Override public View getInfoContents(Marker marker) { return null; } @Override public View getInfoWindow(Marker marker) { return View.inflate(mContext, R.layout.custom_info_window, null); } }