[태그:] Android


  • 안드로이드 웹뷰 캐쉬를 SD 메모리에 쓰기

    안드로이드 웹뷰 캐쉬를 내부메모리가 아닌 외부로 쓰게 할려고 방법을 찾다가 해외 사이트에서 방법을 찾았는데 까먹을까봐 여기 기록해둠 package com.devahead.androidwebviewcacheonsd; import java.io.File; import android.app.Application; import android.os.Environment; public class ApplicationExt extends Application { // NOTE: the content of this path will be… “read more”


  • 안드로이드 쓰레드 임계영역 설정하기

    쓰레드 남발했더니 동기화 문제 생겼음 해당 변수 임계영역 설정은 변수 사용할 때마다 아래와 같이 해주면 됨 synchronized(this){ mTemp2 = 뭔가 변수 작업 mHumi2 = 뭔가 변수 작업 } “read more”


  • 안드로이드에서 IP주소 구하기

    public String getLocalIpAddress(){ final String IP_NONE = “N/A”; final String WIFI_DEVICE_PREFIX = “eth”; String LocalIP = IP_NONE; try { NetworkInterface.getNetworkInterfaces(); for (Enumeration en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) { NetworkInterface intf = en.nextElement(); for (Enumeration enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) { InetAddress inetAddress… “read more”


  • 안드로이드에서 쓰레드 사용하기

    private class ThreadTakePictures extends Thread { final static int STATE_DONE = 0; final static int STATE_RUNNING = 1; int mState; public ThreadTakePictures(){} //——————————————————————————— final Handler handler = new Handler(){ public void handleMessage(Message msg){ switch(msg.what){ //이곳에서 GUI 관련 작업을 할수 있다.… “read more”


  • Service 만들때 유의점

    <application> <service android:name=”서비스로 만들 클래스명”></service> </application> AndroidManifest.xml에 위처럼 추가를 하고 해당 클래스엔 extends Service로 상속을 받는다 상속을 받으면 Eclipse가 알아서 기본 메소드 들을 등록해준다. 자꾸 까먹어서 여기 적어둠. “read more”