Bar charts are most useful for showing a comparison between different groups of numerical data or to track changes to numerical data over time. MPAndroidChart is the leading open source free to...
Category: Android Development
How to Move Between Fragments Using the Navigation Component
Switching between fragments within an activity in Android has been a painful experience in the past. Using the fragment manager and fragment transactions to switch between fragments was never a great...
If you ever need to show a scrollable list of items in your app you might consider using a RecyclerView or ListView to achieve this. In this article I will summarise the major differences between...
There are some great apps on the Android Play Store that use voice recording functionality from your mobile device, some great examples include apps such as Shazam, that listens for a song playing to...
When making your Android apps you may get to the point where you need to create multiple Activities for different screens within your app. When you have multiple Activities you will need a way to...
At the moment I am working on app to help keep me motivated on my goals by using a count down timer to track the time I spend on each of my goals everyday. I have put together this tutorial with...