일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- position
- relative
- text-shadow
- I/O
- 산업기사
- fixed
- call by value
- where
- 스마트에디터
- 정보처리 산업기사
- box-sizing
- 정보처리기사
- transform
- Spring
- MySQL
- Encoding
- UTF-8
- SQL
- ABSOLUTE
- transition
- method
- 기사
- static
- datasourceexplorer
- STREAM
- 정보처리
- codepage
- 이미지확대
- call by refelrence
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