Jetpack-Glance: No way to custom fonts 🕸

Arman Chatikyan
ProAndroidDev
Published in
4 min readOct 31, 2023

--

In this publication, I’m addressing the challenges faced when creating a widget that requires custom fonts.

Let’s begin by introducing the results of what we will get. The idea is to show the upcoming events in a list, which are using custom fonts.

And the empty state, which should show “Nothing” text, using the Tuesday Night Font.

The bad guy

After reading the Glance documentation, I discovered that it allows font customization, but it’s limited to a few fonts and font families existing in the system. The documentation says.

Defaults are provided, but it is also possible to supply a custom family. If this is found on the system it will be used, otherwise it will fallback to a system default.

Can I provide a custom font? It has a simple answer, no, limitations with widgets prevent Glance from displaying custom fonts. There are only a few built-in fonts which we can use.

The solution

In this example, I’m using the version 1.0.0.
Basically, if the system does not provide a built-in UI or widget, we can draw it with Canvas and fortunately, this helps me to draw a custom font with Canvas. Let’s move forward to see how it actually happens.
At first, we should create a simple widget.

With the first step, you should declare the receiver inside the AndroidManifest

Next, we need to add information to the widget by creating a straightforward XML file inside the res/xml folder and naming it event_widget_info.xml. This XML file should include specific parameters that we need to define for the widget.

After we are done with the XML, let's move forward to the code part.
At first, we need to create a GlanceAppWidgetReceiver

Then actually the EventsWidget

After this, you will see a simple widget with simple text.

Let's dig deeper to understand how we can actually apply the custom fonts for the widget.
For that purpose, I have created a GlanceText, which we can use in this simple way.

Here is the result using the GlanceText.

Old friends are coming to help

How actually GlanceText works under the hood, it uses Canvas to overcome custom font limitations in Jetpack Glance, at first I’m creating a TextPaint and then giving it the custom font and then actually drawing it with the paint. Here is the whole code, which makes it happen. Basically, you can control letterSpacing, textColor, fontSize and any other properties, which TextPaint can handle.

And the code of the GlanceText which uses an Image under the hood.

Basically, here you can draw anything with the canvas.

In our next article, I will try to share my experiments of creating an animation inside the widget. And in the end, I want to share one more example, where I used the GlanceText.

You can find the full code of this example in my Github repository.

And that’s it for today 🤩

Jetpack Glance gives us a new way to reimagine the Widgets. I have some ideas which will be covered in upcoming articles, stay tuned and clap if you like the article.

You can find me on X @chatikyan
Thanks for reading this article. I hope you enjoyed it.

THE END

--

--