일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 리눅스
- virtualbox
- php
- 우분투 젠킨스 업데이트
- 가상컴퓨터
- phpMyAdmin
- 우분투
- Android
- vimrc
- 젠킨스
- 안드로이드
- vim
- 아파치
- 가상머신
- 인증번호 문자
- vi
- 우분투 아파치 ssl
- jenkins 업데이트
- 전화번호 가져오기
- 버추얼박스
- Firebase
- 웹서버
- ubuntu
- 우분투 젠킨스
- jenkins
- CODEIGNITER
- Phone Selector
- 아파치 https 적용
- SMS Retreiver API
- jenkins war
- Today
- Total
목록안드로이드 (22)
철스토리
https://realm.io/kr/docs/java/latest/http://www.thedroidsonroids.com/blog/android/realm-database-example/http://blog.naver.com/il7942li/220795501361
http://www.kmshack.kr/tag/coordinatorlayout/http://www.kmshack.kr/2016/03/support-library-bottomsheet-behavior/http://freehoon.tistory.com/entry/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C-CoordinatorLayout-%ED%99%9C%EC%9A%A9-Scrolling-Techniques-CoordinatorLayout-%ED%99%9C%EC%9A%A9-Scrolling-Techniqueshttp://hatti.tistory.com/entry/android-Behavior..
http://ggari.tistory.com/436
http://itmir.tistory.com/529http://sapandiwakar.in/pull-to-refresh-for-android-recyclerview-or-any-other-vertically-scrolling-view/
https://github.com/emilsjolander/StickyScrollViewItemshttps://github.com/emilsjolander/StickyListHeaders
* 참고 사이트http://gun0912.tistory.com/55http://gun0912.tistory.com/61https://github.com/ParkSangGwon/TedPermission ---------------------------------------------------------------------------------------------------------------------- # TedPermission 이란? 안드로이드 6.0 마시멜로우에서 권한관련된 내용이 추가되면서 많은 부분 불편하게 되었다. 기존에 되던 앱들이 죽는 현상이 발생하며... 여러가지 불편한 점들이 많았다. 이러한 부분을 간단하게 해결하기 위해 박상권님의 블로그를 통해 알게된 TedPermission을..
* 참고 사이트http://humble.tistory.com/13http://satyan.github.io/sugar/http://nnoco.tistory.com/136 ---------------------------------------------------------------------------------------------------------------------- # Sugar ORM(Object Relation Mapping)이란? ORM에 대해 간략하게 소개하자면 Object Relation Mapping으로 객체와 릴레이션(RDB의 테이블)간에 매핑을 해 주는 역할을 한다. 쉽게 말하면 Book이라는 객체가 있다면 이 객체를 ORM을 통해 RDB에 삽입(Insert)하거나, 검색(S..
* 참고 사이트http://gun0912.tistory.com/30 http://tosslab.github.io/android/2016/04/16/migration-to-retrofit2.htmlhttp://hashcode.co.kr/questions/1563/retrofit2-%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%9C-http-%ED%86%B5%EC%8B%A0http://square.github.io/retrofit/http://mytalkhome.tistory.com/867http://falinrush.tistory.com/5https://zeroturnaround.com/rebellabs/getting-started-with-retrofit-2/https://intheche..
출처 : https://github.com/bumptech/glide 이미지뷰에 이미지를 보여줄 때 사용하는 라이브러리중에 내가 가장 많이 쓰는 라이브러리이다. - Google에서 개발해서 밀고있던 volly이후에 2014년에 공개된 라이브러리- 다른 이미지 로딩라이브러리에는 없는 썸네일보기, GIF로딩, 동영상 스틸 보기 기능까지 지원합니다. * Gradlerepositories { mavenCentral() // jcenter() works as well because it pulls from Maven Central } dependencies { compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.android.support:support-v..
키캣 이전 버전과는 다르게 요즘에는 안드로이드 상태바와 액션바의 색상을 변경하는 일이 많다. 롤리팝 이후버전 부터는 색상값을 변경하는 것이 가능하다. OnCreate에서 Activity가 생성될 때 색상을 바꿔주면 된다. /* 상태바, 타이틀바 */ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { getWindow().setStatusBarColor(getResources().getColor(R.color.app_color)); getSupportActionBar().setBackgroundDrawable(getDrawable(R.color.app_color)); } 이방법이 제일 간단한 듯~!