TheJadav

Interest Book

Interest Book by Rudra Enterprise (Made in India) A digital book to manage all loans and installments. Never forgot loan progress. This is a khata

Read More »

Android – Implement Onesignal (Alternative for firebase)

Onesignal is one of the best alternative for firebase push notification. It is easy to use, free for push notification, however it has 30K limit for subscribers. Onesignal almost support all kind of operating systems.It has 860K+ users, who are currenlty using onesignal. For more you can visit its official site.

Read More »

Biometric API in Android – Add security in app

With Android 10, android introduced biometric api. It is important to add security to app, this api makes it easy. All you need to just implement one single api and you can use all the security features which user have in device, like facelock, fingerprint lock, iris

Read More »

Android Fragment Example – Work with fragment in android

Fragment is light part of activity, It can be added as element of activity or we can show it as dialog also. Android suggest to use fragment to divide UI. It is also separating our UI code.
Let’s make activity first. In activity define FrameLayout, which will manage your fragment:

Read More »

How to display HTML in TextView?

Display HTML in TextView

            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                tvContent.text = Html.fromHtml("#HTML_STRING", HtmlCompat.FROM_HTML_MODE_LEGACY)
            } else {
                tvContent.text = Html.fromHtml("#HTML_STRING")
            }


Read More »

Table of Contents