Xamarin solution structure
Once the project is created, you'll see the solution structure shown in the following screenshot:

The main parts of the solution that we need to understand for now are as follows:
- References: This section lists all the required libraries for the project. As we can see in the preceding screenshot, it references
Mono.Android
, which is the library forXamarin.Android
. - Resources: It contains all the resources, for example, images, layouts, and much more.
- The
MainActivity.cs
file has our C# code for handling events and other things in our main screen.