본문 바로가기

카테고리

(211)
Kakaotalk on Ubuntu Trouble Shooting 카카오톡(KakaoTalk)을 Ubuntu(Debian)에서 사용시 문제해결 # 자세한 방법(예를들어 gdiplus를 설치하는 방법등)은 검색을 통해 알아보세요. # 이 포스팅은 절대적인 해결방법이 아닙니다. 사용자 환경에 따라 해결방법이 다를 수 있습니다. (저의 해결방법 또한 작동하지 않거나, 나열한 오류가 발생하지 않을 수 있습니다.) # 해결하시거나 잘못된 정보는 댓글/메일을 통해 제보 부탁드립니다. 색인 (클릭하면 이동합니다) A. 기본 B. Trouble Shooting C. 알려진 오류 D. 더 나은 방법 A. 기본 1) 테스트/사용 환경 : Ubuntu 15.04 Native / KakaoTalk 2.0.7.935 / Wine 1.7.35 (Windows 7) / PlayOnLinux 4...
Add Hangul / Hanja Key - UIM Byeoru(Korean) xmodmap -e 'remove mod1 = Alt_R'xmodmap -e 'keycode 108 = Hangul'xmodmap -e 'remove control = Control_R'xmodmap -e 'keycode 105 = Hangul_Hanja'xmodmap -pke > ~/.Xmodmap 위 명령어들을 터미널에서 실행 후, uim에서 Byeoru의 On/Off 설정을 다시 추가해준다. Ref: http://kwonnam.pe.kr/wiki/linux/xmodmap
About Name devflow Location S.Korea e-mail admin(at)devflow.kr regame(at)youdie.net Github https://github.com/devflow
이전안하기로해씀. ㅎ 걍 쓸라캄. 서버 대여는 싸다고해도 돈나가는게 많은거같음. 걍 스킨이나 바꺼야지
Picasso를 LinearLayout의 배경 설정으로 사용하기. Picasso 라이브러리의 핵심기능 중 RequestCreator의 into() 함수에는 Target이라는 인터페이스를 파라미터로하는 함수가있는데, 이를 이용하면 간단하게 해결이 가능하다. Target을 implements하는 클래스로 만들어 주면 된다. public class PicassoableLinearLayout extends LinearLayout implements Target { public PicassoableLinearLayout(Context context) { super(context); } public PicassoableLinearLayout(Context context, AttributeSet attrs) { super(context, attrs); } public Picasso..
DrawerLayout의 드래그 가능부분(엣지) 변경하기 public void setDrawerLeftEdgeSize( DrawerLayout drawerLayout, float displayWidthPercentage) { try { // find ViewDragHelper and set it accessible Field leftDraggerField = drawerLayout.getClass().getDeclaredField( "mLeftDragger"); leftDraggerField.setAccessible(true); ViewDragHelper leftDragger = (ViewDragHelper) leftDrag..
ViewPager의 Fragment 안에 DrawerLayout 사용시 문제. ViewPager의 Fragment 페이지 안에서 DrawerLayout을 사용할시(ViewPager의 Swap기능은 OFF라고 가정.), 드래그해서 Drawer를 여는 부분에 문제가 생기게 된다. 이유는 ViewPager가 DrawerLayout의 바로 Parent가 되면 발생하는 문제이다. 이때 DrawerLayout을 Root로 지정하지말아야한다. 간단하게 LinearLayout을 Root로 한 후, 바로 아래에 DrawerLayout이 되는 형태를 사용하여야 한다. 예) ViewPager -> Fragment -> LinearLayout -> DrawerLayout -> Content, DrawerView
Android 기기 식별에 대해 Identifying DevicesSuppose you feel that for the needs of your application, you need an actual hardware device identifier. This turns out to be a tricky problem.In the past, when every Android device was a phone, things were simpler: TelephonyManager.getDeviceId() is required to return (depending on the network technology) the IMEI, MEID, or ESN of the phone, which is unique to that piece of har..