Android 리소스에서 폰트 읽기
static Typeface FileStreamTypeface(Context context, int resource) { Typeface tf = null; InputStream is = context.getResources().openRawResource(resource); try { File outputDir = context.getCacheDir(); // context being the Activity pointer File outputFile = File.createTempFile("tmp", ".raw", outputDir); String outPath = outputFile.getAbsolutePath(); byte[] buffer = new byte[is.available()]; Buffe..
모바일 프로그래밍
2016. 12. 30. 11:32
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday