Build Xamarin Android App Start to Finish with Visual Studio Step by Step
by admin • April 26, 2017 • Android with C# and .NET, Xamarin Mobile App Development • 0 Comments
In my previous posts on Xamarin Android, I explained various parts of developing Android Apps using Visual Studio with C#. We also looked into a sample app called MyBookStore. After that app, we have all the required tools under our belt to create a practical app which can be published to Android stores like Google Play store.
The app which I’m going to show you in this post shows quotes on a screen swipe. It also shows various categories and the user can select a category to view quotes from that category. The user can also share quotes with their friends and family members using share option. The ThinkQuotes app is published on Google Play Store.
This is how it looks like.
The steps to create an Android app from scratch using Xamarin Android from start to finish with Visual Studio and C# are given below.
- Download, install, and setup Xamarin Android for Visual Studio
- Create a Xamarin Android project from the Visual Studio project templates under C#
- Create required structure of folders to handle data access, models, business logic and other aspects (coming soon)
- Create SQLite database to hold categories and quotes (coming soon)
- Add required classes and common code in your classes
- Create required activities and fragments (fragments will be explained in future posts)
- Show data on the activites
- Create navigation drawer menu or hamburger menu
- Add categories to menu drawer
- Add swipe effect
- Add implicit intent to show share options for sharing quotes
- Build your project
- Test on emulator and / or actual devices
- Publish on Google Play (coming soon)
This is how the project structure of ThinkQuotes app looks like.
There are many more details involved with this project which needs to be explained in detail. So if you are interested to know more about how this app was built and how it was published on google play and see the code behind this app then share your interest by commenting on this post. If I get good feedback on this then I’ll explain this app further with all the details.
