일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Express
- xPlatform
- GIT
- table
- Android
- window
- vaadin
- hadoop
- Spring
- JavaScript
- 공정능력
- Python
- MSSQL
- plugin
- mybatis
- IntelliJ
- SPC
- R
- Sqoop
- react
- Eclipse
- tomcat
- 보조정렬
- SQL
- es6
- mapreduce
- Kotlin
- Java
- SSL
- NPM
- Today
- Total
목록전체 글 (655)
DBILITY
res/xml/path.xml AndroidManifest.xml...... //출처를 알 수 없는 앱 설치 권한if (!getPackageManager().canRequestPackageInstalls()) { Intent intent = new Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES); intent.setData(Uri.parse(String.format("package:%s", getPackageName()))); if (intent.resolveActivity(getPackageManager()) != null) { startActivity(intent); }}//build.gradlebu..
ProgressBar progressBar = new ProgressBar(this);progressBar.getIndeterminateDrawable().mutate().setTintList(ColorStateList.valueOf(Color.RED));Dialog progressDialog = new Dialog(this);progressDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));progressDialog.setContentView(progressBar);progressDialog.setCanceledOnTouchOutside(false);progressDialog.setOnCancelListener(n..
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); ..
style은 View에 적용된다.Theme은 앱 전체에 적용된다.colorPrimary와 colorSecondary는 앱의 브랜드를 표현하기 위한 색상이다.colorPrimary는 툴바와 버튼의 백그라운드 색상으로 적용되며, colorOnPrimary는 포그라운드 색상이다.colorSecondary는 체크박스,라디오버튼, 스위치 등의 활성상태 색상이고, colorOnSecondary는 포그라운드 색상이다.statusBarColor는 상태바의 백그라운드 색상으로 사용된다.colorPrimaryVariant,colorSecondaryVariant는 그림자 색상이다.아래는 statusBar를 사라지게 하는데 parent 테마에 따라 다르다truetruefalsehttps://m2.material.io/deve..
퍼미션은 없어도 되는 것 같은데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, "#..