Taking a screenshot in android was easy.How to do we do it flutter with only specific widget.Everything in flutter needs package for implementing our features.So we will need 3 packages…
Android ImageView-Button Kotlin Tutorial –ImageView-Button Kotlin Example
Tutorial: Step 1:Open up Android Studio Project through res -> layout -> activity_main.xml (or) main.xml and add below code or just drag and drop the switch to design XML file…
Android TextView-Button Kotlin Tutorial – TextView-Button Kotlin Example
TextView: TextView is android widget for display any kind of text or strings. Button: Button is android widget for clickable touch events.Button can listen to click events. Tutorial: Step 1:…
Android ProgressBar Tutorial – ProgressBar Example
ProgressBar: ProgressBar is used to display the status of work being done like analyzing status of work or downloading a file etc. In Android, by default a progress bar will…
Android SeekBar Tutorial -SeekBar Example
SeekBar: SeekBar is one of the very useful user interface element in Android that allows the selection of integer values using a natural user interface. An example of SeekBar is…
Android WebView Tutorial – WebView Example
WebView:WebView is a view used to display the web pages in application. This class is the basis upon which you can roll your own web browser or simply use it…
RadioButton & RadioGroup Tutorial With Example In Android Studio
RadioButton : RadioButon is a two state button that can be checked or unchecked. If a radio button is unchecked then a user can check it by simply clicking on it….
Switch (On/Off) Tutorial With Example In Android Studio
Switch: Switch is a two-state toggle switch widget that can select between two options. It is used to display checked and unchecked state of a button providing slider control to…
Android EditText Tutorial – EditText Example
EditText: In Android, you can use “EditText” class to create an editable textbox to accept user input.This tutorial shows you how to create a textbox in XML file, and demonstrates…
Android Spinner Tutorial – Spinner Example
Spinner: Spinner provides a quick way to select one value from a set of values. Android spinners are nothing but the drop-down-list seen in other programming languages. In a default…