Animation for showing and hiding a view in a simple way
This is an simple example how you can show and hide a custom layout view using slide animation effect. We are going to use one button for toggling a ConstraintLayout as a custom view for the animation effect (you can use whatever container view you prefer). The preferred programming languageRead More →
React Components
Components are: The main building blocks of React. React exist to help you create components and then also have those components comunicate, pass data, pass information and methods between one another. There is a paragraph in React documentation that says: Components let you split the UI into independent, reusable pieces,Read More →
How to add color images as icons in your navigation drawer menu in Android
Intro In this post we will demonstrate how to add color images as icons in your navigation drawer menu in Android. If you need help creating a navigation drawer you can check out this POST. Exercise First we will create a new android project using empty activity and add a navigationRead More →
Create-React-App
Create-React-App is a utility script that: Creates a skeleton React project with a bunch of files and folders, already there for us, a bunch of settings configured automatically right out of the gate. Sets it up so that Js files are run throughout Babel automatically, so we dont have toRead More →
Get screen sizes of the Android Device
A way of getting screen sizes of the device in pixels and density independent pixels (dp)Read More →
How to change the color of menu item and text in Bottom navigation bar in Android
In our last post we showed you how to create a bottom navigation bar in Android using BottomNavigationView. BottomNavigationView. But how to easily change the color of menu item and text of the menu items in the bottom navigation view. It is very easy and simple to change the colorRead More →
Bottom navigation bar in Android with BottomNavigationView and Kotlin
Intro In this post we will demonstrate how to create a bottom navigation bar in Android using BottomNavigationView. BottomNavigationView creates bottom navigation bars, making it easy to explore and switch between top-level content views with a single tap. You should use bottom navigation for top level destinations that need toRead More →
Our first Android App – Formula 1 Latest News is on Google Play Store
We are proud to present to you our first major application that is live on Google Play store. It is about Formula 1 news, events, racing calendar, teams, drivers, videos and photos. Almost everything that is included in this application is explained on our blog. We are pleased that theRead More →
How to dynamically add resources from inside the APK in Android
In a situation where you are getting a response from an API, but there are some additional data (images, descriptions, etc.) that are lacking in the response and you need to add them. If the data that you want to add is small in size you can store that dataRead More →
Read lines from text file in Android
In this example will be shown how to parse text file in to data objects and use the data where needed. The example is separated in two classes MainActivity and Library data transfer object (DTO) to map that line. This was the parser that was used in solving the exampleRead More →