365Bloggy Android Wear OS Wear OS is a version of the Google Android operating system. It is designed for smartwatches and other wearable devices. Wear OS supports Bluetooth,3G, Wi-Fi, and LTE connectivity and it works on the ...
365Bloggy How to change the whole language in Android Programmatically Android 7.0 provides support for multiple languages in our application. There are many types of language support in Android devices and the default language is English, and other many languages suppor...
365Bloggy Glide Image Loader Library in Android Apps Glide is an Android library that displays images from URLs. It also takes care of caching and keeping memory on images. It provides animated GIF support and handles load /caching. Glide is required in...
365Bloggy Text To Speech in Android Text-to-speech uses many applications. It is used to speech words in your application. The text format of that speech text automatically generated in the search bar. In this blog, we’ll learn how to i...
365Bloggy Life Cycle of Flutter Widgets The widgets contain their life cycle and it is stateless. We want structures to stay the same all over the app. For example, AppBar, Textview, etc. widgets are immutable. Flutter provides a Hot Reload...
365Bloggy Kotlin Explicit Type Casting Kotlin explicit casting works on is or ! is an operator check variable and the compiler automatically casts the variable, but in explicit type casting, we used it as an operator. 1. Unsafe cast operat...
365Bloggy Kotlin Null Safety Kotlin provides null safety in application. Null safety works on variables accepting null or not.NullpointerException is thrown the particular exception while sometimes application failure or system c...
365Bloggy Android Studio Setup for Flutter Development Android Studio is one of the popular apps developed by Google itself to create cross-platform Android applications. You have to install Android Studio version 3.0 or later. Install the Flutter and Dar...
365Bloggy Kotlin Extension Function The Kotlin extension function is a new feature of Kotlin. Without creating an object of class. It is known as an extension function. To add an extension function to a class define a new function appen...
365Bloggy Kotlin – Scope Function What are Scope functions? Kotlin provides functions known as Scope functions in the standard library to execute a block of code within the context of an object. It offers a temporary scope when you ca...
365Bloggy Authentication Using Fingerprint in Android Android phones contain fingerprint authentication. We can implement fingerprint authentication in our app to secure our application. We will take a look at the implementation of fingerprint authentica...
365Bloggy Navigation in your Android app with Android Navigation Component Navigation has a role in mobile application development. It works to navigate to different screens or destinations. The Android navigation component is one of the most useful and it’s developed by and...