由于小部件的开发,需要定义我自己的字体(有时可以通过 SharedProperties 更改)。
我在这里看到的灵魂之一是使用:
TextView tv=(TextView)findViewById(R.id.yearthree_view);
Typeface font = Typeface.createFromAsset(this.getAssets(), "fonts/Century_Gothic.ttf");
tv.setTypeface(font);
但问题是:onUpdate() 方法不熟悉
findViewById
我使用 RemoteViews 访问 TextView 以更新文本的方法。
提前致谢。