본문 바로가기

ANDROID

(27)
Ringdroid(링드로이드) 소스 우리나라에서도 많이 알려진 안드로이드 벨소리 제작 어플리케이션중에 최고인 링드로이드는 오픈소스며 현재 구글프로젝트에서 제공중입니다. https://code.google.com/p/ringdroid/ 위링크에서 확인하실 수 있으며 소스가 깔끔하게 작성되있으며 어느정도의 제작의 코멘트가 있어 편리합니다., Waveform, CheapsoundFile 클래스 등, 굉장히 유용한 코드가 있습니다. SVN으로 http://ringdroid.googlecode.com/svn/trunk/ 를 Checkout하시거나,https://code.google.com/p/ringdroid/source/browse/ 로 통해 소스코드를 보실 수 있습니다.
이클립스 ADT 추가시 Unable to read repository 오류 Unable to read repository at https://dl-ssl.google.com/android/eclipse/content.xml. 라는 오류와함께 Eclipse에 ADT추가가 안되는 경우가 있습니다. 카스퍼스키 사용자분들에게 발생하는 문제였습니다. IM, Spam, Web 감시를 끄시고, eclipse.exe파일 속성에서 호환성탭 -> 관리자 권한으로 이 프로그램 실행에 체크해주셔야 정상적으로 ADT를 추가할 수 있습니다. ADT플러그인의 주소 https://dl-ssl.google.com/android/eclipse/
HttpClient의 Timeout을 설정해주기. HttpClient mClient = new DefaultHttpClient();mClient.getParams().setParameter("http.protocol.expect-continue", false);mClient.getParams().setParameter("http.connection.timeout", 2000);mClient.getParams().setParameter("http.socket.timeout", 2000); 위와같이 설정해주시면 됩니다.
모든 Activity, Widget을 ICS HOLO LIGHT 로.. 좋은 라이브러리가 있어서 포스팅해봅니다. 보통, Activity들은 OS 버전에 맞는(Gingerbread, ICS, ... )의 THEME를 따라가는데요. 아무래도 이쁜 테마는 ICS Holo Light 이잖아요, 그걸 버전과는 상관없게 사용하는 라이브러리를 찾게 되었습니다. HoloEverywhere v1.4What is it?Bringing Holo Theme from Android 4.1 to 2.1 and above.How to use?You should clone git repo, init and update submodules:git clone git://github.com/ChristopheVersieux/HoloEverywhere.git HoloEverywhere cd HoloEveryw..
Create a Custom-Styled UI Slider (SeekBar) in Android 좋은글이 있어서 첨부합니다. 선출처 : http://www.mokasocial.com/2011/02/create-a-custom-styled-ui-slider-seekbar-in-android/ An Android slider (or a SeekBar as it’s called in the Android world) is a pretty slick UI tool which we recently used in our Call Your Folks! app as a means of choosing a reminder frequency between one day and three months.I’ll walk you through creating a custom-styled seekbar for your An..
마켓등록시 예기치 않은 오류가 발생했습니다. 나중에 다시 시도해 주세요 마켓에 apk를 등록할때 예기치 않은 오류가 발생했습니다. 나중에 다시 시도해 주세요 마와 같은 오류가 밣생할 때가 있다, 보통 컴퓨터를 리붓을 하거나 apk를 재 Export 하다보면 되긴하는데.. 이럴때도 안될때는 자동로그인이 되어있더라도, 로그아웃후 다시 로그인하면 정상적으로 올라간다. 단, 가끔 구글 서버가 장애가 있어서 안올라가는 이유도 있다.
[Android] LazyList (비동기식 이미지 다운로드 클래스) LazyListA simple library to display images in Android ListView. Images are being downloaded asynchronously in the background. Images are being cached on SD card and in memory. Can also be used for GridView and just to display images into an ImageView.(http://github.com/thest1/LazyList/ 사이트에서 인용) 보통 Listview에서나, ImageView에서 로딩알림없이, 비동기식으로 이미지를 웹으로 불러올때 사용하는 Class입니다. 개인적으로 ImageDownloader(http://..
[Android] NoThrowThreadPool import java.util.concurrent.BlockingQueue; import java.util.concurrent.Executors; import java.util.concurrent.RejectedExecutionException; import java.util.concurrent.RejectedExecutionHandler; import java.util.concurrent.ThreadFactory; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; public class NoThrowThreadPool extends ThreadPoolExecutor { private static fi..