일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 비행기 모드
- TCP 네트워크 방식의 연결
- Collection Framework
- tcp네트워크
- 스랄 특성
- 집 정리
- tcp
- End of Darkness
- 안드로이드 Application Lifecycle
- game
- 명령어
- 소캣(Socket)
- 아이패드
- php 홈디렉토리 변경방법
- 포트(Port)
- 자바
- 아이폰
- 안드로이드
- 나지보
- 에셋
- 게임
- 변경된 정보
- 어플
- 컬렉션 프레임
- 벨팡
- 히오스
- 기업의 행포
- unity
- 나지보 특성
- 리눅스
- Today
- Total
목록Android (60)
Do Something IT
private void clearApplicationCache(java.io.File dir) { // 캐쉬 삭제 메서드 if (dir == null) dir = getCacheDir(); else ; if (dir == null) return; else ; java.io.File[] children = dir.listFiles(); try { for (int i = 0; i < children.length; i++) if (children[i].isDirectory()) clearApplicationCache(children[i]); else children[i].delete(); } catch (Exception e) { } } public void onDestroy() { super.onDestro..
안드로이드는 여러 단말기에 탑재 되므로 각 단말기의 다양한 해상도에 맞도록 설계되어야 한다. 그러기 위해서는 그 해당단말기의 dpi를 알아서 바로바로 사이즈를 정해주는것도 좋은 방법이다. dpi를 동적으로 체크하기 위해서는 아래와 같은 코드가 필요하다. 자세히 알아보도록하자 DisplayMetrics outMetrics = new DisplayMetrics(); pWinM.getDefaultDisplay().getMetrics(outMetrics); int sum = outMetrics.densityDpi; sum에 dpi 값이 저장된다. dpi는 해상도를 나타내는 단위이다. QVGA(240x320), 120dpi : HTC Tatoo HVGA(320x480), 160dpi : 안드로원, HTC G1 W..
// 안드로이드에서 패키지에 대한 정보는 PackageManager를 통해 알 수 있다. PackageManager pm = this.getPackageManager(); // flags Additional option flags. Currently should always be 0. List appList = pm.getInstalledApplications(0); Iterator i = appList.iterator(); /* retrieve installed applications */ while (i.hasNext()) { ApplicationInfo app = i.next(); if (app.packageName.equals("com.kt.olleh.istore")){ if(UpdateCheck..
Code Endprivate Runnable BuyTheMusic = new Runnable() { public void run() { //TODO 파일을 다운로딩하는 스레드 //URL 생성 tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); DownloadURL = "http://smartring.wiz.co.kr/bell/wiz_009.asp?key=" + CyptoPhone + "&id=" + CyptoLid + "&subno=" + SelectURL; switch (SelectURL) { case 1: mp_text = "_후렴"; break; case 2: mp_text = "_앞부분"; break; case 3: mp_te..