Skip to content

Instantly share code, notes, and snippets.

View Ovinatter's full-sized avatar

Ovinatter Ovinatter

View GitHub Profile
@Yosuke-Kawakami
Yosuke-Kawakami / Activity_map.java
Last active November 15, 2016 05:48
Google Maps Android API V2 のバルーンをカスタマイズするのに一寸手間取ったのでメモ
/*
* 基本的な実装は他を参照してくだち!><
*
*/
GoogleMap _map;
private void init_map(){
_map = ((SupportMapFragment)fragment).getMap();
_map.setInfoWindowAdapter(new CustomInfoAdapter());
}