본문 바로가기

Android Studio

(Android Studio) 홈 버튼 이벤트 처리 출처 : http://biig.tistory.com/81 123456@Overrideprotected void onUserLeaveHint() {//여기서 감지Log.d(TAG, "Home Button Touch");super.onUserLeaveHint();}Colored by Color Scriptercs 안드로이드 스튜디오에서 홈버튼 눌렀을 때 Toast를 쓸 수 있고 프로세스 종료도 넣을 수 있다. 더보기
(Andorid Studio) 웹뷰 쿠키 삭제, 캐시 삭제 웹뷰 쿠키 삭제 관련 출처 3개 http://devbible.tistory.com/200 http://theeye.pe.kr/archives/1179 >> 이게 됨http://www.androidpub.com/250419 CookieManager cookieManager = CookieManager.getInstance();cookieManager.removeAllCookie(); ================ 웹뷰 다루기 힘들다. 일단 웹뷰에서 동영상 보려면 연결부위를 만들어줘야하는 것 같다. ================= 캐시삭제 관련 하이브리드앱에서 사용 할 수 있다는데 사용 해봤다가 필요없어서 코드 삭제 출처 : http://fimtrus.tistory.com/entry/Android-%EC%9.. 더보기
(Android Studio) Error : missing styles. Is the correct theme chosen for this layout? missing styles. Is the correct theme chosen for this layout? Use the Theme combo box above the layout to choose a different layout, or fix the theme style references. 어쩌다가 프로젝트 만들고 레이아웃 xml 들어가서 미리보기 확인하면 이렇게 뜬다. 해결책 : 무시하고 하거나, 새로 프로젝트 다시 만들거나, SDK 업데이트 후 껐다가 다시 켜면된다.(Ignore or New Project or Update SDK + Restart Android Studio) 더보기
(Android Studio) 간단한 RTSP 서버의 영상 재생 어플 출처 : http://yowon009.tistory.com/337 좋은 예제 같다. 더보기
(Android Studio) 안드로이드 그래프 차트 그리기 라이브러리들 소개 출처 : http://bronks.tistory.com/429 1.https://github.com/PhilJay/MPAndroidChart 2.http://www.telerik.com/blogs/telerik-ui-for-android-debuting-with-a-powerful-holo-inspired-chart-library 3.https://github.com/handstudio/HzGrapher 더보기
(Android Studio) MP Android Chart library http://www.truiton.com/2015/04/android-chart-example-mp-android-chart-library/ 차트 만들 수 있는 라이브러리 같은데 사용법을 모르겠다. 더보기
(Android Studio) 두번 터치(onDoubleTap) 예제 다른 사이트 : http://technote.kr/67 아래가 예술.. 출처(出處) : http://blog.csdn.net/nizhuanxingheit/article/details/48716769 중국어로 된 사이트에서 예제를 찾았다. 더블터치를 안드로이드에서 구현하려면 더블탭이란걸 써야한다. 잘 돌아가더라.. ㄷㄷ MyButton.java 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374public class MyButton extends Button { private GestureDetector mGe.. 더보기
(Android Studio) 기기별 해상도와 UI 최적화 좋은 얘기가 있어서 적어 놓는다. 출처 : http://solarisailab.com/?p=179 더보기