목록Android (2)
Kelly's journey to a coding master
https://developer.android.com/reference/android/graphics/drawable/AnimationDrawable AnimationDrawable | Android Developers developer.android.com Drawablae 객체를 연속적으로 정의해서 View 객체의 백그라운드로 사용함으로써 frame-by-frame 애니메이션을 만들 때 쓰이는 객체이다. 가장 간단하게 구현하는 방법은 XML 파일(res/drawable/ folder에 위치함)에 애니메이션을 정의하고 나서 View 객체의 백그라운드로 설정하는 것이다. 애니메이션을 실행할 때는 start() 를 호출하면 된다. // MainActivity.java import android.graphi..
https://www.geeksforgeeks.org/stringbuffer-class-in-java/ StringBuffer class in Java - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksforgeeks.org Mobile App Dev 자료를 공부하던 중 buffer 부분에서 StringBuffer라는 클래스를 사용한 것..