如何正確實例化AssetManage?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.
應該是什麼在這種情況下,「處理」?
謝謝
jpobst的答案是正確的。 (IntPtr)構造函數用於包裝預先存在的JNI對象引用以供託管代碼使用。如果你使用JNI/Android.Runtime.JNIEnv,你只需要這些構造函數。 – jonp 2011-02-10 12:31:29
如何在此處標記正確答案? – 2012-03-23 23:28:34