본문 바로가기

반응형

전체 글

(67)
XML 특수문자 처리 XML 예약문자, &는 XML tag 표시와 entity를 표시하는 XML 예약문자로, XML 문서에 그대로 사용할 수 없다. (greater-than sign)>& (ampersand)& 그리스문자그리스 문자는 풀어서 사용한다.αalphaβbetaγgammaδ,Δdeltaεepsilonζzetaηetaθthetaιiotaκkappaλlambdaμmicronνnuξxiοomicronπpiρrhoσ, Σsigmaτtauυupsilonφphiχchiψpsiω, Ωomega 기호 & 부호≤ or =±+/-˚degrees℃degrees C→-->㎍, μGmicrogram㎕, μLmicroliter㎛, μMmicrometer®(R)™(TM)χ2chi─square ..
[Arc] 부트로더 언락키 알아내기 부트로더 언락하기 1. 부트로더 언락키 알아보기 전화 다이얼 *#06# 입력하면 IMEI 넘버가 나온다....... 일단 메모를 해놓으시고~~~2. http://unlockbootloader.sonymobile.com/ 에 접속 ▲ 하단으로 내려 버튼 클릭 ▲ 두번째 경고문....무시하고 Continue ▲ 무시하고 Yes 클릭 ▲ 체크박스 클릭 후 accept 한다. ▲ 이름, IMEI 넘버(15자리인데.....마지막 한자리를 제외한 14자리만 입력), Email 주소 작성 후 클릭 ▲ 메일을 확인하란다........... 메일을 확인해 보면 부트로더 키가 도착.......... 키를 알아냈으니..... 본격적으로 언락하기..... : http://cholchori.tistory.com/739
구글 날씨의 대안책~!!! 구글 날씨가 막히고 나서..... 국내 및 해외 날씨까지 지원하는 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..
[포토샵] 포토샵을 웹에서 사용하자 가끔씩 포토샵이 급히 필요하거나 할때가 있죠...... 괜찮은 사이트를 찾았습니다.... 설치없이, 간단히 사용가능한...... 또한 포토샵과 비슷한 UI를 가지고 있는...... http://pixlr.com/editor/
이미지의 Orientation를 체크해서 이미지 회전하기 출처 : http://snowbora.com/428안드로이드에서 단말기 내부의 사진을 ImageView 등에 출력할 때, 이미지가 가로 방향인지 세로 방향인지 체크해서 적절하게 회전시켜서 보여주는 함수입니다.이미지의 Orientation 정보를 얻는 함수입니다.view sourceprint?01.public synchronized static int GetExifOrientation(String filepath)02.{03.int degree = 0;04.ExifInterface exif = null;05. 06.try07.{08.exif = new ExifInterface(filepath);09.}10.catch (IOException e)11.{12.Log.e(TAG, "cannot read exif..

반응형