Now we are all using Android Studio to develop Android applications. It has built-in powerful development tools that can help us build applications quickly and efficiently. When we develop interfaces, we often use selector files (xml), which can set different backgrounds for a control according to different states, such as pressed, selected, focused, etc. In this tutorial, PHP editor Baicao will introduce how to use Android Studio to create a selector xml file, and explain its usage and common problems in detail to help you better master the skills of using selector.
Method 1: This method can be performed in Android mode or project mode
Right-click the module of the newly created xml file and select Android resource file
In the pop-up interface, change the Resource type to Drawable
Method 2: But this must be in project mode
Find the drawable file under the module where you need to create a new xml. Right-click the drawable in this directory and select Drawable resource file. The specific path is app-->src-->res -->drawable, right-click the operation sequence as New-->Drawable resource file
Just create a new one directly on the pop-up page.
The above is the detailed content of Introduction to the method of creating a new selector xml file in Android Studio. For more information, please follow other related articles on the PHP Chinese website!