일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- call by value
- call by refelrence
- transform
- transition
- 산업기사
- text-shadow
- I/O
- box-sizing
- 스마트에디터
- 기사
- static
- MySQL
- where
- ABSOLUTE
- fixed
- position
- datasourceexplorer
- UTF-8
- 정보처리기사
- 이미지확대
- relative
- SQL
- codepage
- 정보처리
- 정보처리 산업기사
- method
- Encoding
- Spring
- STREAM
Archives
- Today
- Total
목록전체 글 (40)
a battle with myself
[android] 다음지도 URL SCHEMA 사용법 길찾기 등
시작 좌표 도착 좌표를 URL 상에 parameter로 넣어주고 intent를 띄워주면 됨String url = "daummaps://route?sp="+USER Latitude+","+USER Longitude+"&ep="+ARRIVAL Latitude+","+ARRIVAL Longitude+"&by=FOOT";Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); startActivity(intent);
android
2017. 1. 13. 09:18
[android] image 갤러리(Gallery) intent 오픈
private static int REQUEST_CODE = 1;Intent intent = new Intent(); intent.setType("image*//*"); intent.setAction(Intent.ACTION_PICK); startActivityForResult(Intent.createChooser(intent, "Select Image"), REQUEST_CODE);
android
2017. 1. 12. 15:18