How to Create Graphics Application using Android Studio IDE

Create Graphics Application using Android Studio IDE

Introduction :

Creating graphics applications in Android Studio IDE is allow you to show your creativity. If you want to develop a game, drawing app or any other graphic related application, Android Studio is the best tools to bring your vision to life. In this article, I shall show you how to create a simple graphics application for android phone using Android Studio.

About the application :

This is a simple graphics application. When you open the app on your Android phone, you can see circle will create and then disappear on the screen. This makes the graphics app an animation effect.

Step for create the application :

The following step you have to follow to make the graphics app for android phone.

Step 1 :

In the beginning, open Android Studio on your PC. Now, create a new project with empty activity and name it as ‘Graphic_Application’. If you do not know how to create an Android app, you can follow my link.

Step 2 :

Then, you can see a default project is opened on your Android Studio IDE. First, open the activity_main.xml file and replace the default code with the following code.

Step 3 :

Now, open the MainActivity.java file and replace the default code with the following code. Here, you have to keep the first line same as your default code such as “package com.example.Graphic_Application;”

Run the application :

To run the app on your phone, connect your phone to the computer via USB cable (data cable). To run the project, click on the green “Run” button in the Android Studio IDE. When the app will be installed and launch on your device, you can see below image as output.

Output of Graphics Application using Android Studio IDE

Conclusion :

After completing the article, you have learned how to build graphics applications using android studio IDE. Now, you can build more complex graphics application with advanced features and design patterns as you like. Thank you for visiting my site.

Scroll to Top