일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- Express
- SSL
- JavaScript
- table
- SQL
- Spring
- Kotlin
- IntelliJ
- 공정능력
- SPC
- Eclipse
- plugin
- xPlatform
- R
- tomcat
- Sqoop
- react
- 보조정렬
- mapreduce
- NPM
- hadoop
- es6
- GIT
- Android
- Java
- vaadin
- Python
- MSSQL
- mybatis
- window
- Today
- Total
목록2024/03/26 (2)
DBILITY
유튜브를 보고 따라 했다. 저장 경로가 /data/user/0/com.example.myfilehandle/files/test.txt 로 나온다. 실제로 보니 data/user/0 = data/data 다 avd device explorer에서 찾아 봤다. firesDir의 설명은 다음과 같다. 권한 요청이 필요없다고... android.content.Context Returns the absolute path to the directory on the filesystem where files created with openFileOutput are stored. The returned path may change over time if the calling app is moved to an adopte..
당연하게 getDate가 되는 줄 알았다. 그냥 현재 날짜였다. setOnDateChangeListener를 구현해서 처리했다. 맞는지는 모르겠다. 그냥 된다. calendarView.setOnDateChangeListener { view, year, month, dayOfMonth -> Log.d("setOnDateChangeListener","$year $month $dayOfMonth") val calendar = Calendar.getInstance(Locale.getDefault()) calendar.set(year, month, dayOfMonth) //selectedDate = calendar.timeInMillis view.date = calendar.timeInMillis }