목록Android/GUI & Activity (8)
올해는 머신러닝이다.
Rect r = new Rect ( 0, 0, 0, 0 ); getView().getHitRect(r); boolean intersects = r.contains ( (int) event.getX (), (int) event.getY () ); mHandler.removeCallbacks(longClickFireRunnable); if ( !intersects ) { ## 화면 밖을 벗어났을 경우 처리 }
출처 : http://202psj.tistory.com/571 http://code.google.com/p/android-market-api/ 개발자 입장에서 쌔가빠지게 업데이트 게속 해줘도 업데이트 하나도 안하는 사용자들이 너무 많다!! 주위에 보면 그런 사람 잇더라.. 그렇다고 따로 서버 둬서 체크하자니까 그냥 앱혼자노는 어플은 부담스럽다 구글플레이에 돈주고 개발자 등록했는데 요정도 서비스는 해줘야하는거 아닌가~~ 그렇다 해준다. 버전체크 api를 이용해서 정보를 가져와서 사용하자~ Build.VERSION.SDK_INT 일케 가져온담에 맞춰서 하자 MarketSession session = new MarketSession(); session.login("id","pw"); // 구글 아무 계정이나 ..
@android:anim/accelerate_decelerate_interpolator 애니메이션이 점점 빠르게 동작하다가 점점 천천히 동작합니다. @android:anim/accelerate_interpolator 애니메이션이 점점 빠르게 동작합니다. @android:anim/anticipate_interpolator 애니메이션이 시작할 때 반대 방향으로 동작을 한 후에 본래의 방향으로 동작합니다. @android:anim/anticipate_overshoot_interpolator 애니메이션이 시작할 때 반대 방향으로 동작을 한 후에 종료 지점을 지나갔다가 종료 지점으로 돌아옵니다. 예를 들어 왼쪽에서 오른쪽으로 이동하는 애니메이션이 있다면 시작할 때 뷰가 왼쪽으로 조금 움직인 후 오른쪽으로 이동하고..
출처 : http://www.vogella.com/tutorials/AndroidActionBar/article.html Using the action bar in Android applicationsThis tutorial describes how to use the action bar in your Android applications. It is based on Eclipse 4.3 (Kepler), Java 1.6 and Android 4.4.Table of Contents1. Introduction to the action bar1.1. What is the action bar?1.2. Example1.3. Action bar on devices before API 3.02. Using the ..
https://github.com/grantland/android-autofittextview
출처 : http://ankri.de/autoscale-textview/I was in need of a TextView that has a fixed with but dynamic content, so I needed the content to automatically scale.The AutoScaleTextView takes the android:textSize value and uses it as the preferred text size. You can also set the minimum text size. The default for the minimum text size is 10dp. TheAutoScaleTextView now tries to take the maximum value b..