Skip to main content

Posts

Shared Transition Animation Android

Recent posts

Open an Android fragment from another fragment using a button click

In this video, we utilize the jetpack navigation component to launch a fragment from an existing fragment in android, utilizing a button within the launching fragment. I try to make it as simple and easy to understand as possible

Top 5 Programming Mistakes Beginners will Make

This video will show you the Top5 most common mistakes beginners will make and teach you the best approach to use in order to avoid them, in this video, I will talk about my very own mistakes that I had to learn from

What you need to know in order to create your first game

We all know that designing your first Android game is not easy, but the most difficult part is finding ready to use information that can guide you through the development process. With this in mind, I have decided to create a short video based on my experiences,.It illustrates what you need to know as well as master in order to design your first game. This video will not go into the technical nuances of creating your first game but will only act as a guidepost on what you need to know and master, in order to create that great game that you've been dreaming to show the world.

Android On-boarding made easy

In this video, we show you the easy way to get Onboarding tutorial in your Project THE EASY WAY Step 1. Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories: allprojects { repositories { .. . maven { url ' https://jitpack.io ' } } } Step 2. Add the dependency dependencies { implementation ' com.github.msayan:tutorial-view:v1.0.10 ' } Step 3   e xtend your activity  with Tutorialactivity this is done in Kotlin by class youractivityname : Tutorialactivity step4 copy the code into your oncreate method addFragment( new Step . Builder () . setTitle( " This is header " ) .setContent( " This is content " ) .setBackgroundColor( Color . parseColor( " #FF0957 " )) // int background color .setDrawable( R . drawable . ss_1) // ...

Loading Local Webpage inside Android Webview

[1] first create an asset folder, and place all your local web page files and assets within that folder [2] create a web view within your layout folder of the activity [3] finally use the web filter load the local page/HTML using an example of the code below Simply do  this: WebView webView = (WebView)findViewById(R.id.webView1); webview.loadUrl("file:///android_asset/file.html")];