Skip to content

Instantly share code, notes, and snippets.

View himangipatel's full-sized avatar

Himangi Patel himangipatel

  • Nagarro
  • Ahmedabad
View GitHub Profile
@ccjeng
ccjeng / CustomInfoWindowAdapter.java
Last active February 27, 2024 12:40
Custom InfoWindow Layout for Google Map in Android
public class CustomInfoWindowAdapter implements GoogleMap.InfoWindowAdapter {
private Activity context;
public CustomInfoWindowAdapter(Activity context){
this.context = context;
}
@Override