How to Design UI/UX for the Latest Android 9 and 10 Updates

Google released the latest Android 10 just this past September, and while it’s only available on a small handful of the latest, most premium phones, a lot of phone manufacturers are expected to roll out Android 10 on some of their most recent phones in the near future.

Similar Reads: Best Computers For Graphics Design

Android 10 brought a handful of updates and cool features, such as a system-wide Dark Mode, but very little in the way of any actual UI update. Google has stuck with the material design because it works so well, so this guide will be applicable for previous Android versions as well (Oreo, Pie, etc).

Knowing how to properly design UI elements for Material Design will help with a lot of things, from developing apps that perform well on Android devices, to getting your custom themes accepted in theme stores, such as Samsung Theme Store.

You can also read these other topics on Appuals, which will give you a lot of extra information relevant to this topic:

An overview of Material Design

Material Design revolves around a few important things. Color palette, responsive grid layout, and knowing your way around the Android System UI, if you’re designing themes. For developing apps, you need to be aware of all of the above, plus things like Android runtime permissions and requests, if your app will access the user’s storage folders, camera, etc.

This page on the official Android Developer goes much deeper into the privacy and permission changes that app developers should be aware of for Android 10. But for the most part, we’re going to focus on theming, not actual app development, for this article.

Color palette

For Material Design color palette, Google prefers a “two color” system with variants:

So for example, like in this photo. Your primary color would be purple, with your secondary color as cyan. And then for other elements of your UI, you would use shade variants of purple and cyan, so everything blends together.

This Material Design editor is a very useful tool that helps you put together color variations. You can also look for inspiration from professional UI/UX design agencies like Clay, or this list of the top-rated web design companies in 2019.

Responsive grid layout

Understanding responsive grid layout means understanding how pixel density and automatic screen adaption works. For the most part, the average Android phone DPI is somewhere between 300 to 480 DPI.

With that in mind, a 300 DPI screen will typically be able to display up to 4 columns:

Whereas a screen with 600 dpi will display up to 8 columns.

Between each column are “gutters”, basically the areas that separate each column. So on a mobile with 360dp, each gutter would be around 16dp.

Understanding screen DPI

When designing UI, whether it’s system UI or your app’s UI, you need to take into account the different pixel densities of different phone sizes. Here is a chart of the most common screen resolutions and pixel densities:

table of Android DPI screen density

So as a rule of thumb, when designing a “global” theme or app, and not focusing on creating themes for a single device, you should start at the lowest density. This is because if you start your design at 1x, you simply have to take measurements in pixels, and the values will remain the same across DPs.

However, if you design for 3.5x, you need to divide all values by 3.5 for adapting to other densities, and then it just becomes a headache of calculating multiple DP values.

Additional tips for Android 10 UI/UX design

If you need a custom color for theme components such as radios, buttons, checkboxes, etc, you should not use drawables to show the various states (checked, clicked, etc). Because when you use drawables, you lose the native Material Design effects (like ripple) which Google extensively updated in Android 9 and Android 10.

When working with Material Design, Google includes a lot of goodies that you can take advantage of, and they will flow more naturally with your UI/UX.

So for example, here are a few keywords for theming components with built-in Material Design elements, and your app or UI/UX will still enjoy the native system behaviour and UI states.

 

Button with custom colour

android:backgroundTint="@color/red"

-----

Radio Button with custom colour

android:buttonTint="@color/red"

-----

Images & Icons

android:drawableTint="@color/red"

-----

ProgressBar with custom colour

android:progressTint="@color/red"

To show a simple shadow below components like in cardview mode, you just need to use the elevation property.

android cardview with shadow

android:elevation="1dp"

Merging tags and parent properties is extremely useful, to give you better control and manageable XML files.

<LinearLayout>

<include layout="@layout/light_expanded_card" />

<include layout="@layout/light_collapsed_card" />

<include layout="@layout/color_indicator_strip" />

</LinearLaout>

Animated layout changes can really improve your UX, and nearly all ViewGroup will respect this. So whenever there is a change in the view hierarchy, it will come with an animation. With a bit of know-how, you can also design custom transition effects.

android:animateLayoutChanges="true"
ABOUT THE AUTHOR

Tony Celentano


Tony Celentano is a traveling freelancer originally from New York, and currently resides in the Philippines. While passionate about writing, his other hobbies including tinkering with gadgets, painting, playing guitar, and being a stay-at-home dad.