ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Android Studio Productivity Tips

Michal Ankiersztajn
ProAndroidDev
Published in
4 min readOct 28, 2024

In this article you’ll learn about some of the most helpful and productive settings within Android Studio!

1. Local variable types inlay hints

What does it do?

It’s a hint for the developer to know the type of a specified variable. This makes code more readable most of the time, especially when you’re working with multiple functions and types. Here’s how the code looks with the option disabled:

Local variable types DISABLED

Here’s how after enabling it:

Local variable types ENABLED

It might be helpful because we know it’s a long-to-int conversion and the result. Now, we could reuse it somewhere.

How to enable it?

Place your cursor on the local variable, click alt + enter, then choose “Enable the option ‘Local variable types’ for ‘Types’ inlay hints”.

This means you can enable/disable it on the fly, depending on the code you’re trying to analyse.

2. Implicit receivers and parameters inlay hints

What does it do?

It works much like the previous setting but for lambdas. Frequently, it’ll be much more helpful:

Lambda variable types DISABLED

Now, when we enable it:

Lambda variable types ENABLED

We immediately both know the type of internalVariable and that doSomething takes in Int as input. This might not seem like a big deal, but it can be a lifesaver in bigger classes and functions.

How to enable it?

Place your cursor on the { of lambda and click alt + enter, then choose “Enable option ‘Implicit receivers and parameters’ for ‘Lambdas’ inlay hints”.

This means you can enable/disable it on the fly, depending on the code you’re trying to analyse.

Enabling both 1 and 2 might be overwhelming, so it’s best to see which you should turn on for yourself.

3. Plugins

It would be best to use some plugins as shortcuts for repetitive tasks. I’ve already covered these in detail:

Here’s a list of top 5:

  1. Kotlin Fill Class
  2. ADB Idea
  3. Android Drawable Preview
  4. Key Promoter X
  5. IdeaVim

4. Live Templates

When working with code, you’ll find yourself repeating similar actions repeatedly. Maybe you need to add some boilerplate to keep up with clean architecture or have a coding style. With this, you’ll write your code much, much faster!

An example of how you can show Toast using a live template(it’s bundled within Android Studio from the start):

Live template example

How to add your templates?

One of the best features of live templates is that you can define them yourself by going into Settings | Editor | Live Templates. Find out more about them in the documentation.

5. File Templates

The idea is similar to live templates, except here, you’ll create a file or a group of files with multiple things in common. You’re able to swap parts of the names, etc.

Here’s an example of using a File Template for ViewModel:

File Template for HiltViewModel

How to add your templates?

Like with Live Templates, you can create your templates by going into Settings | Editor | File and Code Templates. Find out more about them in the documentation.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Michal Ankiersztajn

Android/Kotlin Developer & Applied Computer Science Engineer

Responses (4)

Write a response