Android Basics Archives - Page 6 of 11 - Androhub

Custom Toast

Android Custom Toast

What is Toast? A Toast is a message that pops up on the surface of the window. It only fills the amount of space required for the message and the user’s current activity remains visible and interactive. The notification automatically fades in and out, and does not accept interaction events. Toast is transient notifications that

Read More
Time and Date Picker Dialog

Android Date and Time Picker Dialog

Date Picker Dialog and Time Picker Dialog in Android use to select a date and time, as it will be popup when you needed. While Time Picker and Date Picker widget occupy more space on screen. Dialogs are best way to solve this issue. Example In this tutorial, we are going to demonstrate the use

Read More
Sliding Drawer

Android SlidingDrawer (DEPRECATED)

SlidingDrawer represents a widget, where we can use in our Android applications. SlidingDrawer has the ability to hide and/or appear content when the user drags a handle. More specifically, it includes two basic views: the handle where the user can drag. the hidden content that is associated with the handle and it is shown up

Read More
Expandable ListView

Android ExpandableListView

Expandable list view is used to group list data by categories. It has the capability of expanding and collapsing the groups when user touches header. If you are not aware of list view before please refer to this tutorial Android ListView Tutorial. As seen in the Custom ListView we can use a type of array adapter

Read More
Seekbar

Android SeekBar

  Android SeekBar is the extension of ProgressBar. SeekBar allows the user to change the value using touch event/draggable thumb/left right arrow keys. SeekBar has a thumb that can be slided in order to choose a value between 0 and some maximum that can be set from the developer. The user can increase the value by

Read More
AutoComplete and MultiAutoComplete TextView

Android AutoComplete and MultiAutoComplete TextView

Android AutoCompleteTextView completes the word based on the reserved words, so no need to write all the characters of the word. Android AutoCompleteTextView is a editable text field, it displays a list of suggestions in a drop down menu from which user can select only one suggestion or value. Android AutoCompleteTextView is the subclass of

Read More