본문 바로가기

반응형

프로그래밍/안드로이드

(15)
20 Best Android Animation UI/UX Libraries 1. AndroidViewAnimations We will begin with AndroidViewAnimations. It is a simple Android library that enables you to create view shake animations. Its developer was inspired by an iOS library, since Android had no analogue at that time. The library allows you to implement a wide variety of animations, including: bounce; fade; flip; rotate; slide; zoom. Moreover, each item has its own subsection..
레이아웃 디자인에 도움이 되는 사이트 1. Material Palette https://www.materialpalette.com 2. uiGradients https://uigradients.com/ 3. AUOS (Android UI Open Source) https://kmshack.github.io/AndroidUICollection/
build\intermediates\instant_run_split_apk_resources\debug\instantRunSplitApkResourcesDebug\out\slice_2\resources_ap 스튜디오에서 컴파일을 했더니 아래와 같은 에러발생..... build\intermediates\instant_run_split_apk_resources\debug\instantRunSplitApkResourcesDebug\out\slice_2\resources_ap Enable instant Run to hot~~ 이부분 체크를 해제한다.
맥에서 안드로이드 폰으로 파일전송하기 맥에서 안드로이드 폰으로 파일전송하기 http://www.android.com/filetransfer/ 에서 파일 받아 맥에 설치한다.... 그리고 폰 연결.......이게 끝이다.... Download and InstallStep 1: Click Download Now above.Step 2: When the download completes, double-click androidfiletransfer.dmg.Step 3: In the Installer window, drag Android File Transfer to Applications.Use Android File TransferUse the USB cable that came with your Android device to connect i..
구글 날씨의 대안책~!!! 구글 날씨가 막히고 나서..... 국내 및 해외 날씨까지 지원하는 api가 없어 찾던 중 http://openweathermap.org/ 아래 사이트 확인..... http://openweathermap.org/API 라이센스 관련We are open for partnershipAbout OpenWeatherMapOpenWeatherMap is startup that offers free current weather data, forecasts and history data to the developers of web-services and mobile applications. As a data source it uses official meteorological broadcast services, ra..
EditText 포커스 뒤쪽으로 위치하기 EditText 에서 setText()를 하면 포커스가 제일 앞에 오게 된다.... 제일 뒤로 가게 하자.... et_message.setText(mPost_screen_name); //커서위치 제일 마지막으로 이동 Editable etext = et_message.getText(); Selection.setSelection(etext, etext.length());
Location of the Android SDK has not been setup in the preferences android sdk를 업데이트 하고 eclipse를 실행해 보니 아래와 같은 에러가....... 이것 또 무슨 조화인가????? Location of the Android SDK has not been setup in the preferences eclipse [Window] - [Preferences] 경로를 보니....... adb를 찾을 수 없단다......쩝...... Eclipse의 [Help]-[Check for Updates] 를 해주고 나니..... 정상적으로 구동되어 진다......
Can't create handler inside thread that has not called Looper.prepare() UI 쓰레드가 아닌 일반 쓰레드에서 UI 작업처리를 위해 new Handler() 를 통해 Handler를 사용할 경우 아래와 같은 에러가 발생합니다. java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare() http://stackoverflow.com/questions/6369287/accessing-ui-thread-handler-from-a-service I believe this snippet of code constructs a Handler associated with the main (UI) thread:Handler handler = new Handler(Looper.g..

반응형