Categories: Android

[안드로이드] 시스템 폰트 출력

 


1.     폰트를 system/fonts 폴더에 넣는 방법
퍼미션 때문에 그냥 fonts 폴더에 파일을 넣을 수 없습니다. 그래서 아래와 같은 방법을 사용해야 합니다.
a.     adb remount yaffs2 mtd@system rwi 명령
b.    DDMS에서 파일을 넣어봤을 때 space 부족이라고 나오면 에뮬레이터를 종료
c.     emulator -avd avdname -partition-size 256 명령
d.    다시 a 를 입력한 후에 DDMS에 파일을 넣어봅니다.
–       참고 페이지 : http://www.dogadgets.com/tc/entry/android-read-only


2.    폰트를 설정해서 Text 출력하는 방법
Typeface typeFace = Typeface.createFromFile(“/system/fonts/naver.ttf”);
Paint paint = new Paint();
paint.setTypeface(typeFace);
canvas.drawText(“폰트 테스트 입니다. abc 123”, 2, 17, paint);
–       참고 페이지 : http://blog.naver.com/kippee?Redirect=Log&logNo=130068924921

dingpong

Share
Published by
dingpong

Recent Posts

LFS error at git checkout in Jenkins

Problem stdout: stderr: Downloading xxxx.a (83 MB) error: git-lfs smudge -- 'xxxx.a' died of signal…

3년 ago

플레이모빌 크리스마스 XXL 6629 산타 해외직구 구매가 배송비

https://www.playmobil.de/playmobil-xxl-weihnachtsmann/6629.html 구매가 : 48.49 유로 (플레이모빌 독일 홈페이지) 결제하는데 안되서 PayPal 로 결제하니 잘 잔행…

3년 ago

코카콜라 제로 355ml 72캔 구매가 (캔당 453원)

롯데온에서 355ml 24캔 롯데카드로 구매시 13,210원 https://www.lotteon.com/p/product/PD36294 APP으로 35,000원 이상 구매시 7,000 포인트 적립 행사…

4년 ago

경동나비엔 온수매트 EQM541-QS (퀸사이즈) 구입가

구입 매장 : 현대 홈쇼핑 (홈쇼핑 방송 중) 모바일 앱 http://www.hyundaihmall.com/front/pda/itemPtc.do?slitmCd=2114353981 최종 결제 가격 :…

4년 ago

PostMessage에 shared_ptr과 같은 스마트 포인터 넣기

PostMessage의 WPARAM 이나 LPARAM 으로 shared_ptr 와 같은 스마트 포인터 객체를 넘기고 싶은 경우가 있습니다.…

4년 ago

RC2255 – named STRINGTABLEs are not allowed

Visual Studio 에서 작업 중 이러한 컴파일 에러가 발생한 케이스가 있었습니다. 이 경우에는 .rc 파일에…

4년 ago