일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 보조정렬
- R
- Android
- Eclipse
- react
- MSSQL
- vaadin
- SPC
- 공정능력
- mapreduce
- SSL
- Express
- plugin
- GIT
- Spring
- mybatis
- Kotlin
- hadoop
- SQL
- Sqoop
- Java
- table
- es6
- IntelliJ
- xPlatform
- tomcat
- JavaScript
- NPM
- window
- Python
- Today
- Total
목록android/java (9)
DBILITY
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) { WindowMetrics windowMetrics = getWindowManager().getCurrentWindowMetrics(); Log.e(TAG, windowMetrics.getBounds().width() + " : " + windowMetrics.getBounds().height());} else { Display display = getWindowManager().getDefaultDisplay(); DisplayMetrics displayMetrics = new DisplayMetrics(); display.getRealMetrics(displayMetrics); ..
퍼미션은 없어도 되는 것 같은데SharedPreferences sharedPreferences = getSharedPreferences("FIRST_LAUNCH", Context.MODE_PRIVATE);if (sharedPreferences.getBoolean("FIRST_LAUNCH", true)) { sharedPreferences.edit().putBoolean("FIRST_LAUNCH", false).commit(); if (ShortcutManagerCompat.isRequestPinShortcutSupported(this)) { ShortcutInfoCompat shortcutInfoCompat = new ShortcutInfoCompat.Builder(this, "#..
switch에서 case R.id.식별자 하면 오류가 남. R.id가 final이 아니라 그렇다고 gradle 8.0부터 그렇게 되었다고 하니 gradle.properties에 추가 android.nonFinalResIds=false
Unable to instantiate appComponentFactory java.lang.ClassNotFoundException: Didn't find class "androidx.core.app.CoreComponentFactory" on path: DexPathList[[],nativeLibraryDirectories=[/data/app/com.dbility.android.myapplication-zXQF53q8EDh0JWjB7uEqzA==/lib/x86, /system/lib, /system/product/lib]] at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:196) at java.lang.ClassLoader...