전체 글 152

[ Android ] 다음 맵에서 지원하지 않는 점선 라인.. 해결??

Draw Dashed Line 다음 맵에서는 점선 그리기가 제공되지 않는다. 그래서 강제로 그린다. 어떻게?? 이렇게... stackoverflow에서 참조를 했는데 어디서 했는지 모르겠다. 일단 글을 남긴다.... 아! 적용해보니 확대를 많이하면 조금씩 엇나가 있는게 보인다. 정확한 점선은 아니지만 퀼리티가 그리 중요하지 않다면 써보는 것을 추천.

Android Story 2016.11.26

[ Android ] 마커 이미지에 인덱스 합성

이미지 & 텍스트 합성 화면 크기별로 구분하여 마커 이미지에 인덱스를 합성한다. 합성할 때 번호의 숫자에 따라서 크기를 조절할 수 있도록 설정하였다. private static final float DEFAULT_TEXT_SIZE = 50; // xxxhdpi 기준 private static final float XXXHDPI = 640; private static final boolean DBG = false; /** * 리소스 Drawable 위에 텍스트 설정 * @param context 리소스를 가져올 context * @param drawableId 리소스 아이디 * @param text 합칠 텍스트 * @return BitmapDrawable 합친 이미지 */ public static Bitm..

Android Story 2016.11.26

[ Android ] 사이즈가 큰 이미지 뷰

사이즈가 큰 이미지 뷰 처리하기 사이즈가 큰 이미지는 한 눈에 보기 힘들다. 그래서 TouchListener를 사용하여 좌우로 볼 수 있는 리스너를 구현하고자 하였다. ImageView imageView; // 이미지뷰 ( 이미 리소스는 가지고 온 상태 )Bitmap bitmap; // 이미지뷰에서 볼 비트맵 ( 이미 비트맵은 가지고 온 상태 ) 이미지 레이아웃 중요한 건 ImageView의 scaleType이 center이여야 한다는 거 사용하기ImageViewController.setBitmapTouchListener(getApplicationContext(), imageView, bitmap); 출처 : http://stackoverflow.com/questions/3058164/android-sc..

Android Story 2016.11.25

[ Android ] adb shell screenrecord

ADB 안드로이드 화면 녹화 adb 저장 위치 (윈도우) C:\Users\user\AppData\Local\Android\sdk\platform-tools CMD 창 열고& cd C:\Users\[사용자계정]\AppData\Local\Android\sdk\platform-tools adb shell screenrecordrecording the display of devices running Android 4.4 (API level 19) and higher.adb shell screenrecord [options] adb shell screenrecord /sdcard/demo.mp4(press Ctrl-C to stop recording)download the file from the devicead..

Android Story 2016.11.24

[ Android ] GPS 구하기

GPS 위도, 경도 구하기 Android 에서 위도 경도를 구하는데에 있어서 안드로이드 6.0 이전에서는 아래의 참조만으로도 가능하다.그러나 6.0 이후에서는 GPSLocation를 호출할 때마다 사용자에게 퍼미션을 요구하도록하여야 한다. 이는 안드로이드 측에서 처음에 과다한 퍼미션을 묻지 않게 하기 위해서 이러한 방향을 제시한 것으로 보인다. 우선 위치를 얻기 위해 기본적으로 Manifest에 권한을 추가해 준다.AndroidManifest.xml 다음은 액티비티에서 위치를 수신하기 위한 메소드를 추가한다./** * 사용자의 위치를 수신 */ private Location getMyLocation() { Location currentLocation = null; // Register the listen..

Android Story 2016.11.23

[ Android ] 프로그래스 바 반시계 방향으로 돌기 ( ProgressBar counterclockwise )

프로그래스 바 반시계 방향으로 돌기 ( ProgressBar counterclockwise ) 결론부터 말하자면 프로그레스바로는 반시계 방향으로 돌 수 없다. 따라서 ImageView를 활용하여 애니메이션을 적용하는 방향으로 진행하였다. 이미지는 동그란 유형이길 바란다. 추천 : google material icons - rotate lefthttps://storage.googleapis.com/material-icons/external-assets/v4/icons/zip/ic_rotate_left_black_24dp.zip 1) 회전 애니메이션 :: res - anim - ani_image_like_progress_bar.xml 2) 액티비티 레이아웃 :: res - layout - rotate_ima..

Android Story 2016.11.04

[ Mybatis ] Type handler was null on parameter mapping for property '__frch_item_0.value'.

mybatis 사용시에 parameterType안에 List가 들어있을 경우 다음과 같이 하면 #{item.value} 이런 에러가 난다. Type handler was null on parameter mapping for property '__frch_item_0.value'. 다음과 같이 객체를 집어 넣을 경우 (위의 경우도 이와 같이 넣었다. ) List list = new ArrayList(); MyObj obj = new MyObj(); obj.list = list; #{item,jdbcType=VARCHAR} 참조 : https://github.com/mybatis/mybatis-3/issues/592

DB Story 2016.10.18
반응형