我想更改虚拟键盘中预览布局的字体 我创建了一个扩展TextView并在构造函数中的类:
Typeface mFont = Typeface.createFromAsset(mContext.getAssets(), "fonts/MyFont.ttf");
this.setTypeface(mFont);
并创建了一个布局:
<com.example.android.softkeyboard.KeyPreviewTextView ...
android:background="@drawable/keyboard_key_feedback" />
并设置布局:
android:keyPreviewLayout="@layout/keyboard_key_preview"
但我看到字体没有变化 你能救我吗?