AssetManageを適切にインスタンス化する方法は?
ロードしたいファイルがあり、エラーが発生します。
これが私が持っているものです:
AssetManager assetManager = new AssetManager(handle);
Typeface tf = Typeface.CreateFromAsset(assetManager, "fonts/calibri.ttf");
this._textView.SetTypeface(tf, 0); // i just need a regular calibri, I added a file into the fonts folder and set it to AndroidAsset.
この場合の「ハンドル」は何でしょうか?
ありがとうございました