일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- paint
- layout
- Eclips
- 배열
- JavaScript
- JSP
- 전화걸기
- 생성자
- Android
- Spring
- 예외처리
- 메서드
- AWT
- 메소드
- 안드로이드
- OGNL
- Menu
- mybatis
- 이클립스
- 클래스
- 기본
- 어노테이션
- struts2
- 국제화
- 오버로딩
- 에러페이지
- oracle
- HTML
- Java
- Graphic
- Today
- Total
목록구글맵 (3)
note
package kr.android.intent2; import android.app.Activity; import android.os.Bundle; import android.widget.EditText; import android.content.Intent; import android.net.Uri; import android.view.View; import android.widget.Button; public class LaunchDemo extends Activity { private EditText lat; private EditText lon; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInsta..
위치기반 서비스 어플리케이션을 만든다면 이 기능은 일반적으로 써야 될겁니다 사용된 이미지(이미지는 res\mdpi 폴더에 넣으면 됩니다) 기본적으로 manifest에서 apllication -> uses library -> 구글맵 선택( 이전게시물 참고) 해야됩니다 package com.commonsware.android.maps; import android.os.Bundle; import java.util.ArrayList; import java.util.List; import android.graphics.Canvas; import android.graphics.drawable.Drawable; import android.widget.ImageView; import android.widget.Toas..
위치를 직접 지정할 수 있습니다 (위도 경도) manifext.xml 에 Uses Library 셋팅을 해야합니다 Uses Library(manifext -> application) 구글맵 apiKey는 자신의 apikey를 입력하면 됩니다 GeoPoint값을 자신이 직접 지정할 위치로 해도 됩니다 이전 게시물 참고 package kr.android.map; import android.os.Bundle; import android.widget.ImageView; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.google.android.maps.MapView; import com.g..