由於documentation狀態:無法解析法 '的getFont(?)'
Android O lets you bundle fonts as resources by adding the font file in the res/font/ folder.
結果
cannot resolve method 'getFont(?)'
以前我曾經做到以下幾點:
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/myfont.ttf");
但現在,當我嘗試創建字體內部資產文件夾文件夾,它會自動跳到裏面資源文件夾。我正在使用android studio 2.3。預先感謝您的幫助。
你是如何調用'getFont'?你有一個有效的'Resources'對象嗎? – njzk2
您是否定位到開發人員預覽版? – Submersed
@ njzk2我不知道。每當我嘗試創建資產文件夾內的字體文件夾時,它會跳出它並進入res文件夾。 – Darush