1. InfoWindowAdapter 인터페이스를 상속받아 구현하기~!
public class SomethingWindowAdapter implements InfoWindowAdapter{
/*
* Constructor
*/
public SomethingWindowAdapter (final Context context) {
this.mView = (View)((LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(리소스, null);
}//end constructor
/*
* InfoWindowAdapter
*/
@Override
public View getInfoContents (final Marker marker) {
~~~ 설정하기~! 데이터를 넣거나~!
return mView;
}//end getInfoContents Method
@Override
public View getInfoWindow (final Marker marker) {
return null;
}//end getInfoWindow Method
//Variables
private final View mView;
}//end SomethingWindowAdapter Method
2. Map에 Adapter 설정하기~!
this.mMap.setInfoWindowAdapter(new SomethingWindowAdapter(this));
'Development > Android' 카테고리의 다른 글
[Android] 라이브러리 충돌할때~!! 해결방법 (0) | 2014.01.24 |
---|---|
[Android] Android 프로젝트를 jar파일로 만들기~! (0) | 2014.01.23 |
[Android] 릴리즈 버젼이 아무런 이유없이 죽을때... (0) | 2014.01.16 |
[Android] 키보드 감추기~! (0) | 2014.01.06 |
[Android] 위도 경도 값으로 주소값 추출하기~! (0) | 2014.01.01 |