Android Number formatting and Convert String to Integer in Android

Android Number formatting

Hii Developer in this Article I am sharing Android Number formatting and Convert String to Integer in Android. Convert String to integer, and Integer to String, Dobule to String, Type of formating with example.  And also convert a number value 10000 to 10k. 1000 to 1k   5821 to 5.8k 10500 to 10k 101800 to 101k … Read more

How to used ImageView Zoom-in and Zoom-Out in android

Hi Everyone in this Article I am sharing How to used ImageView Zoom-in and Zoom-Out in android. hare is an easy way to used zoon in and zoom out in recycler view list. I am used a GitHub Library  com.github.chrisbanes.photoview.PhotoView.   In this android programming code example, we are going the explore how to pinch ImageView … Read more

How to use Alarm Manager and Broadcast Receiver in Android

In this Android Atrical, How to use Alarm Manager and Broadcast Receiver in Android. here I have also used an android service for creating an android Alarm Tutorial for android development. and also show android alarm notifications. here I am user android background service and android Broadcast receiver to start an alarm. Android Service:- Android … Read more

Android – RadioGroup

Radio Button in Android apps is very common. In this tutorial, we’ll implement the Android radio button widget in our application. Radio Buttons are used when we need to select only one item from a list of presented items. Android Radio Button A radio button consists of two states – checked and unchecked. Clicking an … Read more

Fragment Lifecycle In Android:

Fragment Lifecycle In Android A Fragment represents a behavior or a portion of user interface in a FragmentActivity. You can combine multiple fragments in a single activity to build a multi-pane UI and reuse a fragment in multiple activities. You can think of a fragment as a modular section of an activity, which has its own lifecycle, receives its … Read more

Android Service Tutorial

Android Service Tutorial Android service is a component that is used to perform operations on the background such as playing music, handle network transactions, interacting content providers etc. It doesn’t have any UI (user interface). The service runs in the background indefinitely even if the application is destroyed.service can be bounded by a component to perform interactivity and … Read more

Explain activity in android and Activity lifecycle

Explain activity in android and Activity lifecycle In this post, we are going to discuss ‘Activity’, what is the activity, Activity Lifecycle, Activity Method. let start on discussing. What is the activity? Activity is a Java code that supports a screen or UI. In other words, a building block of the user interface is the activity. Activity … Read more

Android how to use a static spinner dropdown list

Android how to use a static spinner dropdown list in this article, I am sharing how to use a spinner in android.  spinner is like a dropdown list to select an item dropdown list. Spinners provide a quick way to select one value from a set. In the default state, a spinner shows its currently … Read more