일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- tomcat
- Java
- vaadin
- Python
- SQL
- xPlatform
- Kotlin
- Spring
- SPC
- 공정능력
- JavaScript
- 보조정렬
- table
- NPM
- SSL
- R
- Express
- Sqoop
- react
- GIT
- MSSQL
- Android
- Eclipse
- mapreduce
- mybatis
- window
- plugin
- es6
- IntelliJ
- hadoop
- Today
- Total
목록android/kotlin (32)
DBILITY
보통하는 Activity에서 하는 것처럼 필요한 Activity에서 하면 된다. toolbar Layout을 만들고 그걸 Activity에서 include class MainActivity : AppCompatActivity() { private val binding by lazy { ActivityMainBinding.inflate(layoutInflater) } private val bindingToolbar by lazy { ToolbarLayoutBinding.inflate(layoutInflater) } override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) //enableEdgeToEdge()..
다음과 같이 해주니 된다. 다크모드가 필요없는 경우에 굳이 theme을 수정하지 않아도 되겠다..좋다 override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO) ......... }
https://square.github.io/retrofit/ RetrofitA type-safe HTTP client for Android and Javasquare.github.iolibs.versions.toml[versions]....retrofit2 = "2.11.0"kotlinx-serialization-json = "1.6.3"[libraries]....retrofit2 = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit2" }retrofit2-converter-gson = { group = "com.squareup.retrofit2", name = "converter-gson", version.re..
https://developer.android.com/codelabs/basic-android-kotlin-compose-persisting-data-room?hl=ko#0 Room을 사용하여 데이터 유지 | Android Developers Android Kotlin 앱에서 Room을 사용하는 방법을 알아보세요. Room은 Android Jetpack의 일부인 지속성 데이터베이스 라이브러리로, SQLite 위에 있는 추상화 레이어입니다. Room은 데이터베이스를 설정하고 구 developer.android.com 안드로이드에서 제공하는 SQLite JPA로 생각하면 된다. Entity > Dao > Database(Helper라고 생각하자) 순으로 만들면 된다. Log.d("getDatabasePath..
AndroidViewModel을 상속받아 application을 사용하면 쉽다 ViewModel에서 context를 constructor argument로 받고 싶은 경우에는 ViewModelProvider.Factory를 상속받아 create를 구현하면 된다. 그런데 이렇게도 보통 사용을 할까? class RoomViewModelFactory(private val helper: RoomMemoHelper) : ViewModelProvider.Factory { override fun create(modelClass: Class): T { return if (modelClass.isAssignableFrom(RoomViewModel::class.java)) { RoomViewModel(helper) as ..