본문 바로가기
반응형

안드로이드3

[Android] 👓 Android Developer 면접 예상 질문 (Interview Question) 👓 Android Service란 무엇인가? Service는 백그라운드에서 오래 실행되는 작업을 수행할 수 있는 애플리케이션 구성 요소이며 사용자 인터페이스를 제공하지 않습니다. 다른 애플리케이션 구성 요소가 서비스를 시작할 수 있으며, 이는 사용자가 다른 애플리케이션으로 전환하더라도 백그라운드에서 계속해서 실행됩니다. 이외에도, 구성 요소를 서비스에 바인딩하여 서비스와 상호작용할 수 있으며, 심지어는 프로세스 간 통신(IPC)도 수행할 수 있습니다. 예를 들어 한 서비스는 네트워크 트랜잭션을 처리하고, 음악을 재생하고 파일 I/O를 수행하거나 콘텐츠 제공자와 상호작용할 수 있으며 이 모든 것을 백그라운드에서 수행할 수 있습니다. 📓 포그라운드 (Foreground) 포그라운드 서비스는 사용자에게 잘 보.. 2019. 9. 5.
[Android] 백그라운드 투명색 설정 (Set transparent background of an imageview on Android) 📄 [Android] XML Source Code android:background="@android:color/transparent" OR android:background="#00000000" 🚀 REFERENCE 안드로이드/Android BackGround 투명색 적용 하기 ~! 안드로이드/Android BackGround 투명색 적용 하기 ~! 안드로이드에서 투명 배경(BackGround)을 설정 하는 방법 입니다. View의 BackGround 나 Color를 사용할 수 있는 곳에 "android/color/transparent" 속성이나.. arabiannight.tistory.com Set transparent background of an imageview on Android I am us.. 2019. 9. 2.
[Android] 상태바 숨기기 (How to hide status bar?) 📄 Hide status bar Source Code by Java getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 🚀 REFERENCE How to hide status bar? How can I hide the status bar for a specific activity? I found this similar question, but none of the answers worked for me. The app just crashed every time I tried to go to the activity: How to h... stackoverflow... 2019. 9. 2.
반응형