- (UIViewController *)topViewController{ return [self topViewController:[UIApplication sharedApplication].keyWindow.rootViewController]; } - (UIViewController *)topViewController:(UIViewController *)rootViewController { if (rootViewController.presentedViewController == nil) { return rootViewController; } if ([rootViewController.presentedViewController isMemberOfClass:[UINavigationController clas..
로그인 창을 구성할 경우에, 키보드가 나오면서 로그인 UITextField영역을 덮어 버리는 경우가 있다. 이 경우 화면설계를 할 때 하단에 키보드가 나왔을 때의 영역을 고려해서 로그인 텍스트 필드를 배치하는 경우도 있다.하지만, 임시방편일 뿐이고, 보다 근본적인 방법으로 키보드가 나올 때 해당 UIView를 위로 올렸다가 키보드가 사라질 때 그걸 내리는 방법으로 구현해야 한다. 이 방법을 좀 더 세부적으로 보면1. UIKeyboard가 나타나는 이벤트를 감지했을 때2. 키보드 아래쪽의 UIView영역을 키보드 높이 만큼 위로 이동시킨다.3. 키보드 입력이 모두 끝나, 키보드 닫는 이벤트가 나왔을 때4. 키보드를 사라지게 만드면서, UIView를 원래의 위치로 내린다. 구현을 위해서, 먼저 UIKeybo..
public Bitmap scaleCenterCrop(Bitmap source, int newHeight, int newWidth) { int sourceWidth = source.getWidth(); int sourceHeight = source.getHeight(); // Compute the scaling factors to fit the new height and width, respectively. // To cover the final image, the final scaling will be the bigger // of these two. float xScale = (float) newWidth / sourceWidth; float yScale = (float) newHeight / sou..
안드로이드에서 이미지를 사용하기 위해서, 보통 Bitmap 클래스를 사용하게 됩니다. 안드로이드 앱에서 이미지에 대한 Thumbnail이나 이미지의 부분을 자르기 위해서는 Bitmap 클래스로 원하는 사이즈나 원하는 부분을 쉽게 잘라낼 수 있습니다. 아래의 BitmapUtil 클래스는, Bitmap 클래스를 이용해서 이미지를 줄이거나 늘리는 기능을 제공하는 유틸리티 클래스입니다. 아래의 기능정도면, 정말 특이한 요구사항(우측아래를 기준으로 100×100 이미지를 가져와라, 이런건 간단하게 아래의 cropCenter 메쏘드를 약간 변경하면 쉽게 적용)이 없다면, 아래의 유틸리티 클래스만으로도 상당히 많은 부분을 커버할 수 있을것 같습니다. import android.graphics.Bitmap; /** *..
- crop 커스텀 하기 좋은거 https://github.com/jdamcd/android-crop - 심플하고 카메라 or 갤러리 선택가능 https://github.com/lorensiuswlt/AndroidImageCrop - crop이랑 rotation 기능 같이 있음 https://github.com/Jhuster/ImageCropper - 아직 안해봄 https://github.com/lvillani/android-cropimage - 아직안해봄 (카메라 or 갤러리 선택가능한거 같은데 커스텀이 가능한듯 ) https://github.com/ryanhoo/PhotoCropper - 멀티픽 actionbar 이용한듯 ? https://github.com/giljulio/android-multi..
- Total
- Today
- Yesterday
- gitgub
- xcode7
- crop
- xcode8
- git flow
- ios
- 가평휴게소
- 코드 하이라이트
- 안드로이드
- Android
- android jar
- 킹스맨
- 엘지
- 막국수
- 아이콘 사이즈
- Xcode
- 참나무숯불닭갈비
- keyboard
- 남자화장품
- 안드로이드 라이브러리
- resize
- custom font
- 휴게소
- Re:NK
- serialize
- 리엔케이
- ListView
- ShardPreferenes
- 봄봄봄
- cocoapods
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |