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