のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

2015-01-08から1日間の記事一覧

setTypeface

1060 public Typeface setTypeface(Typeface typeface) { 1061 long typefaceNative = 0; 1062 if (typeface != null) { 1063 typefaceNative = typeface.native_instance; 1064 } 1065 native_setTypeface(mNativePaint, typefaceNative); 1066 mTypeface =…

FontFamily

32 public FontFamily() { 33 mNativePtr = nCreateFamily(null, 0); 34 if (mNativePtr == 0) { 35 throw new IllegalStateException("error creating native FontFamily"); 36 } 37 } 39 public FontFamily(String lang, String variant) { 40 int varEnum…