<feed xmlns="http://www.w3.org/2005/Atom"> <id>https://sujungeee.github.io/</id><title>sujungeee</title><subtitle>sujungeee, Record</subtitle> <updated>2026-03-22T22:55:51+09:00</updated> <author> <name>sujungeee</name> <uri>https://sujungeee.github.io/</uri> </author><link rel="self" type="application/atom+xml" href="https://sujungeee.github.io/feed.xml"/><link rel="alternate" type="text/html" hreflang="ko" href="https://sujungeee.github.io/"/> <generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator> <rights> © 2026 sujungeee </rights> <icon>/assets/img/favicons/favicon.ico</icon> <logo>/assets/img/favicons/favicon-96x96.png</logo> <entry><title>[Learning] Github Action 테스트</title><link href="https://sujungeee.github.io/posts/daily-test/" rel="alternate" type="text/html" title="[Learning] Github Action 테스트" /><published>2026-03-02T23:12:00+09:00</published> <updated>2026-03-02T23:12:00+09:00</updated> <id>https://sujungeee.github.io/posts/daily-test/</id> <content src="https://sujungeee.github.io/posts/daily-test/" /> <author> <name>sujungeee</name> </author> <category term="Daily" /> <category term="Learning" /> <summary> CICD에 무지했던 어린(어리지않은) 내 시절.. 이 블로그는 어떻게 활용할까 싶죠ㅇㅅaㅇ ~;; 사용을 하게 될지 말지 모르겠음 일단 테스트 포스팅 하나 남깁니데이 </summary> </entry> <entry><title>[안드로이드] 09. Jetpack- ViewModel, DataBinding</title><link href="https://sujungeee.github.io/posts/android-practice-09/" rel="alternate" type="text/html" title="[안드로이드] 09. Jetpack- ViewModel, DataBinding" /><published>2024-11-11T23:57:00+09:00</published> <updated>2024-11-11T23:57:00+09:00</updated> <id>https://sujungeee.github.io/posts/android-practice-09/</id> <content src="https://sujungeee.github.io/posts/android-practice-09/" /> <author> <name>sujungeee</name> </author> <category term="안드로이드" /> <category term="실습" /> <summary> Jetpack- ViewModel, DataBinding ViewModel ViewModel- Explanations 안드로이드의 액티비티 생명주기에서 분리시켜, 액티비티가 재실행되어도 데이터가 소멸되지 않도록 함 액티비티가 파괴되면 ViewModel 자원도 자연히 소멸됨 ViewModel 객체는 액티비티의 Lifecycle 상태가 종료될 때까지 소멸되지 않음 Rotation으로 재실행되는 경우에도 ViewModel은 소멸되지 않음 MVVM의 ViewModel과 다름 장점 Act... </summary> </entry> <entry><title>[안드로이드] 08. Thread &amp; Coroutines</title><link href="https://sujungeee.github.io/posts/android-practice-08/" rel="alternate" type="text/html" title="[안드로이드] 08. Thread &amp;amp; Coroutines" /><published>2024-11-09T00:46:00+09:00</published> <updated>2024-11-09T00:46:00+09:00</updated> <id>https://sujungeee.github.io/posts/android-practice-08/</id> <content src="https://sujungeee.github.io/posts/android-practice-08/" /> <author> <name>sujungeee</name> </author> <category term="안드로이드" /> <category term="실습" /> <summary> Thread &amp;amp; Coroutines Thread 안드로이드 UI 스레드 안드로이드의 UI 스레드 == 메인 스레드 다른 스레드에서 UI 관련 작업을 수행하려면, 메인 스레드로 메시지를 전송해야 함 Looper 메시지 큐에서 대기하고 있는 메시지를 handler로 전달 HandlerThread: 메인 스레드의 Looper를 사용하지 않고, 독립된 Looper를 가지는 스레드에서 생성 Handler Looper가 보낸 메시지 혹은 Runnable 객체를 처리 ... </summary> </entry> <entry><title>[안드로이드] 07. ContentProvider</title><link href="https://sujungeee.github.io/posts/android-practice-07/" rel="alternate" type="text/html" title="[안드로이드] 07. ContentProvider" /><published>2024-11-03T18:12:00+09:00</published> <updated>2024-11-03T18:12:00+09:00</updated> <id>https://sujungeee.github.io/posts/android-practice-07/</id> <content src="https://sujungeee.github.io/posts/android-practice-07/" /> <author> <name>sujungeee</name> </author> <category term="안드로이드" /> <category term="실습" /> <summary> ContentProvider ContentProvider 동작 원리 ContentResolver에서 아래 메소드들 중 하나를 호출하면 , ContentResolver가 ContentProvider에게 해당 기능을 수행하라고 알려줌 query(): 데이터 읽기 public final @Nullable Cursor query(@RequirePermission.Read @NonNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable S... </summary> </entry> <entry><title>[안드로이드] 06. Fragment</title><link href="https://sujungeee.github.io/posts/android-practice-06/" rel="alternate" type="text/html" title="[안드로이드] 06. Fragment" /><published>2024-10-29T22:33:00+09:00</published> <updated>2024-10-29T22:33:00+09:00</updated> <id>https://sujungeee.github.io/posts/android-practice-06/</id> <content src="https://sujungeee.github.io/posts/android-practice-06/" /> <author> <name>sujungeee</name> </author> <category term="안드로이드" /> <category term="실습" /> <summary> Fragment Fragment 생명주기 onAttach() 프래그먼트가 액티비티에 붙을 때 호출됨 onCreate() 프래그먼트가 액티비티의 호출을 받아 생성되는 단계 받을 arguments들이 있다면 이 단계에서 값을 세팅 onCreateView() 뷰바인딩 진행, onDestroyView()에서 null로 해제 onViewCreated() UI 초기화 진행(화면 컴포넌트에 대한 초기화 및 이벤트 처리 수행) View 생성이 완료되었을 때 호출되는 메소드 onStart() 액티비티는 starte... </summary> </entry> </feed>
