Custom Android TabWidget with BadgesWritten by Nilisoft on August 16, 2011 in Dev Blog - 7 CommentsFor an android app I’m working on I needed to present badges for tabs much like on the iPhone. I looked around for a bit but could not find any good solution for this. It seems the android SDK does not provide this feature out of the box. At least I could not find it. So I had a go at writing a cus..
prjCapture.exe#define WINVER 0x0500 #include LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM); HINSTANCE g_hInst; HWND hWndMain; LPCTSTR lpszClass=TEXT("Capture"); int APIENTRY WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance ,LPSTR lpszCmdParam,int nCmdShow) { HWND hWnd; MSG Message; WNDCLASS WndClass; g_hInst=hInstance; WndClass.cbClsExtra=0; WndClass.cbWndExtra=0; WndClass.hbrBackground=(..
오늘 울 회사 과장님께서 나에게 VC++ 에서 프로젝트 기본값 -> 문자 집합을 멀티바이트로 하는지 물어보셨다.난 당연히 멀티바이트로 쓴다고 말씀드렸다.그리고 왜 물어보시냐고 여쭤보니깐 문자 집합을 멀티 바이트로 해놓으면 나중에 ANSI -> 유니코드, 유니코드 -> ANSI로 변환할 때 문제가 없기 때문이라고 말씀하셨다.과장님께서 클라이언트에서 다국어 처리를 할 때 입력은 ANSI로 받고, ANSI로 받은 것을 내부에서 유니코드로 변경하고, 이것을 출력할 때나 서버로 전송할 때는 다시 ANSI로 변경한다고 하셨다.왜 그렇게 하냐고 여쭤보니.. ANSI로 다국어 문자를 받으면 처리하기가 애매한 경우가 많은데 이것을 유니코드로 변경해서 필터링이나 짤라주기 등을 해주고, 이것을 다시 ANSI로 변경하면 괜찮..
안드로이드/Android Rect Class(클래스) 사용 하기 ~! 안드로이드 Rect Class(클래스) 사용 방법 입니다. Rect는 사각형을 만드는 클래스라고 생각하시면 됩니다. View나 특정 공간에 대해 Rect Class(클래스)를 사용하면 범위에 대한 값을 구할 수 있습니다. Rect Class(클래스)는 위의 그림처럼 4개의 점들이 모여서 하나의 사각형을 이루는 구조를 가지고 있습니다. 자 그럼 예제를 살펴 보겠습니다. ?123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354package arabiannight.tistory.com.rectclass; import a..