일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- transform
- 기사
- fixed
- I/O
- codepage
- 산업기사
- box-sizing
- UTF-8
- method
- Spring
- text-shadow
- SQL
- MySQL
- 정보처리 산업기사
- 정보처리기사
- ABSOLUTE
- call by value
- where
- transition
- relative
- STREAM
- Encoding
- position
- 이미지확대
- call by refelrence
- datasourceexplorer
- static
- 스마트에디터
- 정보처리
Archives
- Today
- Total
a battle with myself
[android] android 구글맵 길찾기 intent 열기 본문
String uri ="http://maps.google.com/maps?saddr="+시작위도+","+시작경도+"&daddr="+도착위도+","+도착경도;
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(uri));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_LAUNCHER );
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);
'android' 카테고리의 다른 글
[android] ScrollView 안의 GridView Full size libary(GridView height) (0) | 2017.01.20 |
---|---|
[android] 다음지도 URL SCHEMA 사용법 길찾기 등 (0) | 2017.01.13 |
[android] image 갤러리(Gallery) intent 오픈 (0) | 2017.01.12 |
[android] Intent 화면전환 animation 효과 삭제 (0) | 2016.12.30 |
[android] webview 창 띄우기 (0) | 2016.12.14 |