How to Add Resource File in Existing Android Project in Android Studio? Last Updated : 31 Aug, 2022 Comments Improve Suggest changes Like Article Like Report Android resource file is a file that stores resources needed for the UI part of an android application. Like: Layout files, drawable files, etc. In the android application, it is very often that we need another resource file for another purpose in the existing application. There are many types of resource files Layout files, Drawables, Menus are some of them. In this article, we are going to learn how to these resources file when needed. Step By Step Implementation Step 1: Go to the Res folder of the application Navigate to the res folder in the app and left-click on it, like the below-given image Step 2: Click on the new option Follow the image below Step 3: Select the android resources file Follow the image below Step 4: Write the file name Follow the image below Step 5: Choose the type of the resource From the drop-down menu select the type of the resource and click ok, follow the image below. Now you have successfully added an android resources file to the existing project. Comment More infoAdvertise with us Next Article How to Add Resource File in Existing Android Project in Android Studio? I its_codezada17 Follow Improve Article Tags : Android Android-Studio Similar Reads How to Create/Start a New Project in Android Studio? After successfully installing the Android Studio and opening it for the first time. We need to start with some new projects to start our journey in Android.In this article, we will learn about How to Create a New Project in Android Studio.Steps to Create/Start a New Android Project in Android Studio 2 min read How to Clone Android Project from GitHub in Android Studio? Android Studio provides a platform where one can build apps for Android phones, tablets, Android Wear, Android TV, and Android Auto. Android Studio is the official IDE for Android application development, based on IntelliJ IDEA. One can develop Android Applications using Kotlin or Java as the Backen 3 min read How to Add Audio Files to Android App in Android Studio? The audio file format is a file format for saving digital audio data on a computer system and all are aware of audio files. So in this article, we are going to discuss how can we add audio files to the android app. There are three major groups of audio file formats: Format Name Description Examples 3 min read How to Create Drawable Resource XML File in Android Studio? Prerequisite: Android Project folder Structure A drawable resource is a common concept for a graphic that can be drawn to the screen and which one can retrieve with APIs such as getDrawable(int) or apply to another XML resource with attributes such as android:drawable and android:icon. There are sev 3 min read Fix "Execution failed app:processDebugResources" in Android Studio Resources are the files and static content that the application's code uses, such as animations, images, layouts, and string values. These files stored in the resource directory can be referenced from the application's code but when a non-existent reference is called android throws an "Execution fai 3 min read Like