일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vaadin
- mapreduce
- GIT
- SSL
- hadoop
- react
- SQL
- plugin
- tomcat
- MSSQL
- table
- Spring
- R
- mybatis
- es6
- SPC
- NPM
- IntelliJ
- xPlatform
- JavaScript
- Kotlin
- 공정능력
- Python
- Java
- Eclipse
- 보조정렬
- window
- Android
- Express
- Sqoop
- Today
- Total
목록2024/04 (11)
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()..

LKEY_LOCAL_MACHINE\SOFTWARE 아래에 Microsoft\browser, Microsoft>Edge,Google\Chrome에 RSAKeyUsageForLocalAnchorsEnabled REG_DWORD = 0를 입력해 준다.
다음과 같이 해주니 된다. 다크모드가 필요없는 경우에 굳이 theme을 수정하지 않아도 되겠다..좋다 override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO) ......... }

Project Explorer에서 Project로 변경하고 app 디렉토리 아래에 디렉토리(libs)를 만든 후 jar,aar을 붙여 넣는다. Project Structure 에서 Declared Dependencies에 Plus 클릭하여 추가한다 Step 1에서 경로(libs)를 입력한다 저장하고 Module level의 build.gradle.kts를 확인해보면 추가 되어 있다.
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..