전체 글
-
안드로이드 코딩을 좀 더 간단하게 "ButterKnife"모바일/Development 2014. 7. 27. 20:07
링크: https://github.com/JakeWharton/butterknife ButterKnife는 Annotation기능을 이용하여 코딩을 쉽게할 수 있는 방법입니다. ※ Bind를 시켜야 사용 가능 (Kotlin과 비슷) class Example extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.simple_activity); // Bind 하세요. ButterKnife.bind(this); } } @BindView 를 이용하면 자동으로 ID 설정과 캐스트를 해줌 // With ButterKnife..
-
안드로이드 애니메이션 라이브러리 모음모바일/Development 2014. 7. 6. 12:04
1. SlidingUpPanelLayout 다운로드: https://github.com/umano/AndroidSlidingUpPanel/releases주소: https://github.com/umano/AndroidSlidingUpPanel 2. FoldableLayout 주소 및 다운로드: https://github.com/alexvasilkov/FoldableLayout 3. android-flip 주소 및 다운로드: https://github.com/openaphid/android-flip 4. SwipeBackLayout 주소 및 다운로드: https://github.com/Issacw0ng/SwipeBackLayout 6. Android-ParallaxHeaderViewPager 주소 및 다운..
-
-
안드로이드 추천 라이브러리 FlatUI모바일/Development 2014. 6. 29. 09:25
이번에 소개해드릴 라이브러리는 FlatUI 입니다. 이 라이브러리는 편안하게 앱에 FlatUI를 적용할 수 있습니다. FlatButton, FlatTextView, FlatEditText, FlatRadioButton, FlatCheckBox, FlatSeekbar, FlatToggleButton 의 View를 지원합니다. 사용법도 간단합니다. 메인 액티비티에 이 문구를 추가합니다.// screen sizes. If you skip this there may be problem with different screen densities FlatUI.initDefaultValues(this); // Setting default theme to avoid to add the attribute "theme" t..