본문 바로가기
반응형

Android16

[Android] AsyncTask Asynctask in Android -Theory | Android Tutorial for Beginner - YouTube AsyncTask enables proper and easy use of the UI thread. This class allows you to perform background operations and publish results on the UI thread without having to manipulate threads and/or handlers. AsyncTask is designed to be a helper class around Thread and Handler and does not constitute a generic threading framework. A.. 2019. 7. 25.
[Android - OpenSource] Butter Knife [Android] Application Developement Butter Knife YouTube Annotate fields with @BindView and a view ID for Butter Knife to find and automatically cast the corresponding view in your layout. 📌 Butter Knife Installation (Gradle) dependencies { ... compile 'com.jakewharton:butterknife:8.5.1' annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1' ... } 📄 Butter Knife (ACTIVITY BINDING) Sourc.. 2019. 7. 25.
[Android] Ripple Drawable (버튼 눌림 효과, 물결 효과) [Android] Ripple Drawable (버튼 눌림 효과, 물결 효과) Ripple touch effect was introduced with material design in Android 5.0 (API level 21) and the animation is implemented by the new RippleDrawable class. Ripple 터치 효과는 Android 5.0 (API Level 21 - 롤리팝)에서 Material Design과 함께 공개되었으며 RippleDrawable Class에 의해 애니메이션으로 동작합니다. Drawable that shows a ripple effect in response to state changes. 사용자에 의한 상태 변경에 대한 Ri.. 2019. 7. 24.
[Android] Date Picker Dialog [Android] Date Picker Dialog A simple dialog containing an DatePicker. 📄 Date Picker Dialog Listener Source Code // TODO: - DatePickerDialog Listener private DatePickerDialog.OnDateSetListener onDatePickerListener = new DatePickerDialog.OnDateSetListener() { @Override public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) { monthOfYear++; final String day = dayOfMonth .. 2019. 7. 22.
반응형