--- { title: 'Hard grids & baselines: How I achieved 1:1 fidelity on Android', description: 'Testing the limits of `firstBaselineToTopHeight` and `lastBaselineToBottomHeight` to deliver a perfect result.', published: '2019-10-07T22:07:09.945Z', edited: '2020-02-02T22:07:09.945Z', authors: ['edpratti'], tags: ['android', 'design'], attached: [], license: 'cc-by-nc-nd-4' } --- # Testing the limits of `firstBaselineToTopHeight` and `lastBaselineToBottomHeight` to deliver a perfect result. _**I really care about implementation.**_ I obsess over it. I’m constantly thinking about it. Whenever I’m designing an app, I always try to focus on how a UI can be created optimally and how well the composition inside a design tool can translate to platform components and paradigms. You’ve probably been through the same thing at one point: you make mockups, detailed descriptions, and spreadsheets; and in the end, the result is not what you wanted it to be. In that case, you’d ask yourself whether those details matter to someone other than yourself. And your answer would be “No.” But that doesn’t help it. Deep down, you still care. It’s still wrong. It almost makes it worse; you’re the only one that knows it’s wrong, but you can’t push yourself to bug your developers about it and waste time that could be spent on “better things” or “more features.” That’s certainly the case for me. So today I’m going to talk about Android’s `TextViews`; how they behave in comparison to design tools, and how to take full control of them, **as a designer.**
The goal is to ensure the implementation is perfect without taking time off feature development.In this post, I’ll walk you through how to make text components for Figma that can be easily implemented on Android, with code snippets and explanations. This post is also helpful for developers to understand [**why they should move that button `3px` to the left.**](https://library.gv.com/why-you-should-move-that-button-3px-to-the-left-c012e5ad32f7) If all you need is to quickly ensure that text sits within a baseline grid without knowing the exact values or whether they match the mockups, there are alternatives to this method! _[Plaid’s `BaselineGridTextView` library](https://github.com/android/plaid/blob/master/core/src/main/java/io/plaidapp/core/ui/widget/BaselineGridTextView.java)_
What if there’s more than one TextView?
As you might imagine, **if we want to keep our text aligned to a baseline grid, we need to ensure that the height of each `TextView` is a multiple of 4 while doing so.** This means we must apply first and lastBaseline attributes to both / all of the stacked TextViews — and that becomes hard to maintain.

|✅ Good|🛑 Bad|
|--|--|
|Applying `firstBaseline` and `lastBaseline` in styles allows you to know exactly what the distance between baselines is, without having to set them one by one to ensure they properly align to a `4dp` grid. | Without applying `firstBaseline` and `lastBaseline` in styles, you can’t detect what the default values are, so you are forced to apply these one by one to every `TextView` to ensure they align to a `4dp` grid. |
The solution is to apply them in your `styles.xml` so that, when themed, the `TextView` is given the right text size, height, font, and baseline properties.
**It is important to note that these values should not be overridden within layouts.**
Ultimately, overriding first and lastBaseline in layouts also causes major issues if you want to change a font style or text size in the future.The overrides will take precedence to whatever value you set in your **`styles.xml`**, requiring you to hunt down occurrences until you can find a layout that was broken due to the change. Let’s look at an example: Implementing margins instead of overriding values also matches the way layouts work within Android Studio and design tools like Sketch and Figma. It also ensures that your layouts can scale well to different font sizes. # So, how can you adapt your TextViews? Design goes first. It’s actually pretty simple. Let’s walk through how to adapt one of Material Design’s standard type sizes: Headline 6 — used inside AppBars and dialog titles. **Step 1: Place a text box of the text style you’d like to adapt — in this case, Headline 6.**  *Text box within Figma.* Here we can see that the text box has a height of `32`. This is inherited from the line height set in Figma, but we need to know the minimum height on Android. We can easily calculate the minimum height in production using *includeFontPadding*. > Headline 6 = `20` (text size) `* 1.33` (`includeFontPadding`) = `26.667sp`  *`TextView` on Android.* Now resize your Figma text box to `26.6` — *it will round it to `27`, but that’s fine.* **Step 2: With the resized text box, align its baseline with the nearest `4dp` breakpoint in your grid.**  *Baseline now sits on the `4dp` grid.* **Step 3: Measure the distance between the baseline and the top and bottom of the text box.**  *`firstBaselineToTopHeight`: `20.66` | `lastBaselineToBottomHeight`: `6.0`* **Step 4: Now right click the text box and select Frame Selection.**  *When created from an object, a frame’s dimensions are dependent on the content inside it.* **Step 5: While holding Ctrl / Command, drag the frame handles and resize it so that the top and bottom align with the nearest baselines beyond the minimum values.**   **NOTE: Keep in mind we must not resize the text box with it. Holding Ctrl / Command is very, very important.** In the example above, we stretched the frame so that the distance between the top of the frame and the baseline of the text box would be bigger than `20.66` (the minimum), therefore, **`24sp`**. The same thing was done to the last baseline and the bottom; we changed it from `6sp` to **`8sp`**, which was the closest multiple of 4 larger than 6. **Step 6: Select the text box inside the frame, and set the text to Grow Vertically.**  This will cause the text box to return to its original height of `32sp` — inherited from the line height.  *The text box is 1sp down from the frame, but that’s normal. We no longer care about the text box height.* **Step 7: With the text box selected, set its constraints to *Left & Right* and *Top & Bottom*.**  *Now your text box will resize with your frame. This is essential when using the text components.* You would need to find these values for every text style in your app, but if you’re taking the Material Design Type Spec as a base for your own, I have already measured and picked the right values for each! _**Resources at the end.**_  # How to implement these values (as a developer) All of them follow the same template. We first set up a `TextAppearance` — which your app probably already has — and then create another style that encapsulates the `TextAppearance` alongside the `firstBaseline` and `lastBaseline` attributes. ```xml ``` Let’s use Memoire once again as an example.  ## Each has a different function: **`TextAppearance`:** Applied in styles to theme Material Components globally. Material Components are themed with `textAppearanceTEXT\_STYLE` attributes that are then applied to all components that inherit it. For example, _**`textAppearanceCaption`**_, _**`textAppearanceBody1`**_, etc. **`TextStyle`:** Applied to `TextView`s in layouts, to ensure `4dp` alignment.  *What happens to a `TextView` when a `TextStyle` is properly applied.* # And now, a couple of warnings ## Loss of vertical padding When setting a style to a `TextView`, keep in mind that `firstBaseline` and `lastBaseline` are designed to replace vertical padding. This means that, whenever set, a `TextStyle` will nullify all vertical padding values. ## Do not apply `TextStyle` to Material Components. Use `TextAppearance` for those instances instead. Applying a `TextStyle` to a component — instead of a `TextAppearance` — causes serious issues.  *Uh-oh…* This happens because Material Components already have padding that _**IS NOT**_ overridden by `firstBaseline` and `lastBaseline` values. Buttons, in particular, have a **maximum height *and* padding**, meaning we’re effectively trying to fit a large text box into a very narrow container, causing the text to shrink as a result. As far as other issues, I haven’t been able to find any. # Resources, resources, resources! Now that you’ve scrolled all the way down without reading a single word, here’s all the stuff you’ll need:  *Figma document with code and layout samples.* ## For designers: [Figma Document](https://www.figma.com/file/F1RVpdJh73KmvOi06IJE8o/Hard-Grid-—-Text-Components/duplicate) Document containing: * A slight introduction * All the text components * A small tutorial on how to use them effectively * Prebuilt layout examples to get you started * Customizable code blocks for each style in a text box, so you can change each depending on your theme and hand it to developers ## For developers: [styles.xml](./styles.xml) A styles.xml file containing: * All the `TextAppearance`s that can be used with Material Components * All the `TextStyle`s to theme `TextView`s accordingly