목록Android (136)
Nuke Olaf - Log Store
https://developer.android.com/reference/android/content/Intent ACTION_PICK 과 ACTION_GET_CONTENT 가 무엇이 다른지 생각해보기 https://developer.android.com/reference/android/content/Intent.html#ACTION_GET_CONTENT https://itrainbowm.tistory.com/27 Button클릭 시 갤러리에서 이미지 가져오기 Button클릭 시 image/* 파일들 선택할 수 있는 창 열기 OnCreate 부문에 Button onClickListener을 추가 하고, Intent를 활용하여 전체적인 파일을 가져올 수 있게 합니다. protected void onCreat..
카메라앱의 앨범 액티비티 (갤러리 액티비티)를 만들기 위해 라이브러리를 사용해야 했다. 키워드는 image picker. 안드로이드 용 api 라고 검색하면 나오는 image picker https://developers.google.com/android/reference/com/google/android/gms/cast/framework/media/ImagePicker 앨범 액티비티를 만들기 위해 어떤 라이브러리를 선택할지 고민해야 했다. 1. Android Arsenal 이라는 사이트는 내가 원하는 라이브러리를 찾기 쉽도록 도와준다 Android Arsenal 링크 : https://android-arsenal.com/free https://www.androidpolice.com/2014/05/20/..
보호되어 있는 글입니다.
1. gpuimage 라이브러리 개요 https://github.com/cats-oss/android-gpuimage cats-oss/android-gpuimage Android filters based on OpenGL (idea from GPUImage for iOS) - cats-oss/android-gpuimage github.com Goal is to have something as similar to GPUImage as possible. Vertex and fragment shaders are exactly the same. That way it makes it easier to port filters from GPUImage iOS to Android. GPUImage 가능한 한 가장 비슷..
1. cameraView 레이아웃에 attribute 를 추가하여 제스처를 통해 필터값을 조정할 수 있다 추가로 봐야할 것) 제스처가 아닌 seekBar 로 필터 tune 을 할 수 있는지 찾아보기 app:cameraGestureScrollHorizontal="filterControl1" 은 횡스크롤을 통해 필터를 컨트롤하겠다는 뜻 실험해본 결과 필터 컨트롤은 되지만 필터 컨트롤이 어떤 방식으로 동작하는지, 우리가 커스텀할 수 있는지까지는 찾아보지 못했음 2. 카메라에 필터를 적용하는 방법은 다음과 같다 camera.filter = Filters.BRIGHTNESS.newInstance() 기본 필터를 NoFilter( Filters.NONE ) 이라고하며 이전에 ..
https://stackoverflow.com/questions/15727912/sha-1-fingerprint-of-keystore-certificate 아 굳이 CMD 로 안 받아와도 되는거구나... 프로젝트 Run 한 다음에 Gradle > app > Tasks > android > signingReport signingReport 를 더블 클릭하면 바로 SHA1 키가 나온다
https://airbnb.io/lottie/#/ Lottie Docs airbnb.io 1. 로띠는 Airbnb 에서 만든 애니메이션 라이브러리이다. 깃헙 주소 https://github.com/airbnb/lottie-android https://github.com/airbnb/lottie 아래 사이트에 들어가면 애니메이션들을 다운로드 받을 수 있다. https://lottiefiles.com/ GIF 나 PNG 를 사용하는 것보다 훨씬 빠른 속도와 용량으로 애니메이션을 보여줄 수 있다는 장점이 있어 사용한다고 한다. 2. 로띠 사용법 (1) build.gradle 에 의존성을 추가한다 implementation "com.airbnb.android:lottie:3.3.1" (2) src > main ..
1. splash 의 사전적 의미 splash 철벅 떨어지다, 끼얹다 https://dictionary.cambridge.org/ko/%EC%82%AC%EC%A0%84/%EC%98%81%EC%96%B4/splash 뭔가 첨벙하고 생겨났다! 그런 의미인것 같다 2. IT 사전에서 말하는 splash screen https://dev.to/alonsoatoneyra/android-simple-way-to-implement-a-splashscreen-in-your-app-3k0f splash screen 이란 앱을 열때 나타나는 화면이다. splash screen 은 사용자에게 앱의 첫인상으로 보여진다. 일반적으로 앱의 로고 또는 앱과 관련된 이미지를 표시하는데 사용된다. https://en.wikipedia..