본문 바로가기

전체 글

(50)
invalidate()와 requestLayout() of View View의 Lifecycle과 관련되어있다. invalidate()의 경우는 draw()를 다시 하도록 요청하는 반면 requestLayout()은 measure()부터 시작하도록 요청한다. 일반적으로 변경사항에 대한 repaint()는 invalidate()를 호출하면 되며 view size를 변경할 경우는 requestLayout()을 호출하면 된다.
유투브 자막(스크립트) 추출 https://downsub.com/ 이 사이트에 들어가 동영상 URL을 입력 하고 Download 버튼으로 언어, SRT, TXT를 선택하여 다운로드 가능하다. Download subtitles from Youtube, Viki, Viu, Vlive and more DownSub is a free web application that can download subtitles directly from Youtube, Drive, Viu, Vimeo, Viki, OnDemandKorea, Vlive and more. downsub.com
failed git pull (Android Stduio) AndroidStudio Bumblebee 버전부터였던 것 같은데 잘 되던 git pull이 아래와 같은 에러가 발생하면서 안되는 현상 발생 Invocation failed Unexpected end of file from server java.lang.RuntimeException: Invocation failed Unexpected end of file from server at git4idea.GitAppUtil.sendXmlRequest(GitAppUtil.java:30) at git4idea.http.GitAskPassApp.main(GitAskPassApp.java:58) Caused by: java.net.SocketException: Unexpected end of file from ser..
AAOS Library Android Automotive OS용 앱 개발을 위한 Library
Google AD [IMA SDK Sample Tag] https://developers.google.com/interactive-media-ads/docs/sdks/android/client-side/tags IMA sample tags | IMA SDK for Android | Google Developers Send feedback IMA sample tags Note: If you're unable to see the tags below, make sure you do not have an ad blocker enabled. To test your IMA implementation, copy and paste one of the following ad tag URLs (example in the HTML5 Get ..
[Android] AsyncTask was deprecated in API level 30. Android 11부터 Google에서는 AsyncTask가 deprecated 되었고 아래와 같이 concurrent 사용을 권장하고있다. This class was deprecated in API level 30. Use the standard java.util.concurrent or Kotlin concurrency utilities instead. https://developer.android.com/reference/android/os/AsyncTask AsyncTask | Android Developers developer.android.com
최고의 개발자 포럼 https://www.xda-developers.com/ XDA Portal & Forums Today, Microsoft is releasing a new optional cumulative update for Windows 11. Unlike most cumulative updates, however, this one actually comes with a new feature. It has the new emojis... www.xda-developers.com https://www.codeproject.com/ CodeProject - For those who code Filter articles, news and messages Just Published Python Artificial Inte..
[Android] Don't Store Data in the Application Object http://www.developerphil.com/dont-store-data-in-the-application-object/ Don't Store Data in the Application Object www.developerphil.com 요약하면 Activity간 공유되는 data를 Application class에 담을 수는 있지만 Application은 언제든지 OS에 의해 kill 될 수 있다. 가령 MyApplication -> Activity A -> Activity B 순으로 실행이 되었다고 가정했을 때 Activity A에서 MyApplication에 어떤 변수에 대한 값을 지정하고 Activity B로 이동한 이후 MyApplication이 kill되었고 다시 MyApplicatio..