Different Ways to Format Code in Android Studio
Last Updated :
25 Feb, 2021
Code formatting is very important when you are building an Android application. This will help you to organize your code properly and to maintain your code to make it easily readable. Below is a list of purposes of having a standard coding format.
Purposes of Having Coding Standards
- A coding standard gives a uniform appearance to the codes written by different engineers.
- It improves the readability, and maintainability of the code, and it reduces complexity also.
- It helps in code reuse and helps to detect errors easily.
- It promotes sound programming practices and increases the efficiency of the programmers.
In this article, we will take a look at different ways to format the code in Android Studio. We are going to discuss three different methods with the help of which we can format the code in our Android Studio.
- Method 1: By using a shortcut key for formatting a code in any file in Android Studio
- Method 2: Formatting a code from MenuBar
- Method 3: By using different shortcut keys for formatting our code
Method 1: By using a shortcut key for formatting a code in any file in Android Studio
In this method, we simply have to navigate to the file in which we have to format our code. After opening the file we have to simply press the shortcut key as Ctrl+Alt+L to reformat the code in your file. With this key, the code in your file will be rearranged according to the code standards. You can get to see below image 1 in which our code is not formatted properly and after pressing this shortcut key our code will be formatted as shown in the second image.
Unformatted code which we have written.
Formatted code which we get after pressing Ctrl+Alt+L
Shortcut keys for different Operating Systems
Operating System
| Shortcut key
|
---|
Windows | Ctrl+Alt+L |
Mac OS | Option+Cmd+L |
Linux | Ctrl+Shift+Alt+L |
Method 2: Formatting a code from MenuBar
In this method, we will rearrange our code from the Menu Bar. To format our code navigate to the file in which we have to format our code and inside that file. Navigate to the top bar and click on the Code option and inside that option click on Reformat code option which is shown in the below screenshot.
After clicking on this option your code will be formatted as shown in the above screenshot
Note: This method will be similar for all the operating systems
Method 3: By using different shortcut keys for formatting our code
Navigate to the file in which we have to format our code and then click on the shortcut key as Ctrl+Shift+Alt+L after clicking this key you will get to see the below dialog on your screen. Select the formatting options and your code will be formatted and rearranged according to selected options. The options present inside this dialog box is explained below.
After selecting the option on this dialog make sure to run it to format your code
Shortcut keys for different Operating System
Operating System | Shortcut key |
---|
Windows | Ctrl+Shift+Alt+L |
Mac OS | Cmd+Alt+L |
Linux | Ctrl+Super+Alt+L |
Similar Reads
Different Ways to Create aar File in Android Studio Android Studio can be used to create an Android archive file (*.aar) that can contain classes and methods that make use of Android classes and related files. Like creating the Jar file, an Android project must be created first, then the Android library module can be created and added. The main diffe
3 min read
Different Ways to View Method Information in Android Studio Easy access to documentation written in comments when hovered over the text is like a cherry on a cake. In Android Studio and other JetBrains editors, there is an option that you can enable to display function types and docs on mouse hover. But first, let's get familiar with what methods are in Andr
3 min read
Different Ways to Change or Add Themes to Android Studio When we are working on any editor or IDE we get used to it and its environment like if we are using Sublime then we like its dark background environment. We have now moved to Android studio but we are not comfortable with the default background and theme. Now the point that comes here is how we can
3 min read
Different Ways to Increase Editor Font Size in Android Studio Android Studio is the official IDE (Integrated Development Environment) for Android app development and it is based on JetBrainsâ IntelliJ IDEA software. Android Studio provides many excellent features that enhance productivity when building Android apps, such as: A blended environment where one can
2 min read
How to Draw Different Types of Circles in Android? In Android, we can manually create shapes as required. A shape can be designed in XML by creating an Android Resource File. The type of file allows various attributes like dimensions, color, strokes (border), solid (background), etc. for creating a desired shape and design. Basically, in this articl
3 min read