Browsing Tag
Android UI
28 posts
Restrict EditText Min and Max Value Input Range in Android
Using Android LengthFilter, AllCaps and CustomInputFilter example. This tutorial explains how to restrict min max input range using custom InputFilter.
How to Monitor TextView Changes in Android
In this tutorial we will see how to monitor the text changes in Android TextView or EditText. Some form based applications needs to continuously monitor for the text changes to perform the front end form validations. This can be achieved by implementing the android.text.TextWatcher interface.
How to Use Hindi Font in Android Application
In this example we'll show you how to support hindi, bangala, marathi fonts in Android application. Android phone doesn't support Devanagari fonts. However if you want to use hindi, tamil, bangali or other Devanagari fonts in your Android Application you have an alternative of using external fonts.
How to Apply Shadow Effect on Android TextView
This example explains how to apply Shadow Effect on Android TextView. You can apply Shadow Effect on Android TextView in two ways. Either we do it pragmatically or we can change in the xml layout.
Android Popup Menu Example
In example explains how to create Popup menu in android. Popup menu is used to display the global actions. Popup menu is an overflow menu like Spinner actions. PopupMenu is available from API level 11 (Android 3.0).
How to Drag a View in Android
In this example we will see how to drag and ImageView in android on touch drag event.
ActionBar with Custom View Example in Android
In this example we will see how to customize ActionBar with Custom View in Android.
Edittext Validation in Android Example
This tutorial show you how to use EditText user interface widget in android and write validation for the inputs. In this example we will create an simple Signup form as attached in the screenshot below.
Android ImageView Example
ImageView is one of the UI widget that is used to display images in your Application. ImageView is comes with different configuration options to support different scaleTypes.
Navigation Drawer Android Example
The navigation drawer is a panel that displays the app’s main navigation commands on the left side of the screen. This example describes How to implement a navigation drawer using Support Library the DrawerLayout API.
TextSwitcher and ImageSwitcher Example in Android
The TextSwitcher and ImageSwitcher methods give you a simple way to add animated transitions. TextSwitcher and ImageSwitcher are used to have an smooth transition animation in android view.
Creating Custom Views in Android Tutorial
This tutorials describes how to create custom Views in Android.In this example we will create a custom view with two TextView. One to the left and other to the right as pairs. The custom styles can be configured from xml.
Android Include Tag Layout Example
In this example, you’ll learn how to use the tag in your XML to avoid replication of views. When you’re creating complex layouts, you may find yourself adding a lot of ViewGroup's and Views. But, making your view hierarchy tree taller will also result in slowness in your application.
Android Seekbar Example
SeekBar is one of the useful user interface element in android applications. SeekBar is an extension of ProgressBar that allows the selection of integer values using a natural user interface. Basically SeekBar has a thumb that you can slide to choose a value between 0 and some maximum that you set. A typical usage of Seekbar is your device brightness control and volume control
Android Radio Button Example
In this tutorial, we show you how to use radio button in android using example. RadioButton is a…
Android Menu Example
This tutorial explains how to create menu in android with example. Menus are a common user interface component…
Android Button Example
This tutorial explains how to use Button widget in Android. The examples used in this tutorial, will show you how to create different button layout such as normal button, image button, button with image and text, etc.
Creating Drop Down List Using Android Spinner
This tutorial explains creating spinner in android and attaching event to spinner in android. Here in this tutorial, you'll create a Simple spinner widget that displays a list of countries and shows appropriate flag as per selected country from the spinner.
Android ViewFlipper Example- Creating Image Slideshow Using ViewFlipper
ViewFlipper is and user interface widget available in android since android API level 1. It can hold two more views, but only one child can be shown at a time. Using this we can implement functionality similar to android gallery item, swiping allows to navigate between images.
Using External Fonts in Android View
This tutorial explains example for using external fonts in Android View. Android applications are capable of loading the external font files with .ttf extension.