본문 바로가기
반응형

#모바일 [Mobile]/Android15

[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.
[Android] Android Studio Assets Folder 만들기 🚀 REFERENCE How to Create Android Assets Folder in Android Studio - Coding Demos Today you will learn how to create Android assets folder in Android Studio. You can use asset folder to add video, songs and gifs files. www.codingdemos.com 2019. 6. 27.
[Android] 브로드캐스트 리시버 (Broadcast Receiver) 📣 브로드캐스트 리시버 (Broadcast Receiver) Android apps can send or receive broadcast messages from the Android system and other Android apps, similar to the publish-subscribe design pattern. These broadcasts are sent when an event of interest occurs. For example, the Android system sends broadcasts when various system events occur, such as when the system boots up or the device starts charging. Apps can.. 2019. 6. 26.
[Android] Service 📣 Service A Service is an application component that can perform long-running operations in the background, and it doesn't provide a user interface. Another application component can start a service, and it continues to run in the background even if the user switches to another application. Additionally, a component can bind to a service to interact with it and even perform interprocess comm.. 2019. 6. 25.
반응형