Android Tutorial

Android Multi AutoComplete TextView Example

android.widget.MultiAutoCompleteTextView class is used to implement multiple auto-complete input text control in android applications. It behaves similar to the class android.widget.AutoCompleteTextView, the difference is that it can let you input text with autocomplete function multiple times. Each text in the input text box is separated by a specified token string.

Android Multi AutoComplete TextView Example Read More »

Android Frame Layout Multiple Views Example

FrameLayout is used to allocate a part of the screen of a single View component to display. It is similar to CardLayout in Swing programming. A FrameLayout component can include multiple view components. The position of each child view component is decided by it’s android:layout_gravity attribute value. This article will show you an example of how

Android Frame Layout Multiple Views Example Read More »

How To Define Custom Color Variables In Android Studio

The android class android.graphics.Color provides some color constants which can be used directly in an android application. For example, BLACK, WHITE, RED, GREEN, BLUE, YELLOW, CYAN, MAGENTA, GRAY, LTGRAY (light gray), DKGRAY (dark gray). But you may find that it is not enough, sometimes you need more colors. So this article will show you how

How To Define Custom Color Variables In Android Studio Read More »

Android Custom View And OnTouchListener Example – Move View On Touch Move

android.view.View component acts like JPanel in Swing programming. It’s just a rectangular blank area, the android.view.View component doesn’t have any content. For built-in UI components of Android applications, they all inherit the class android.view.Viewand then render the appearance on the blank areas provided by the View component.

Android Custom View And OnTouchListener Example – Move View On Touch Move Read More »