Posts

Showing posts with the label Spinner

Custom Spinner in Android

Image
Spinner is one of the most popular widget in android which allow us to pick an item from the list . Follow the bellow steps to create a custom spinner(Image with Text) in android . Step 1:   Create Project            a) Open Android Studio           b) Go to File >New> New Project  > Project Name  > Next > Next > Next > Finish  Step 2  :   Design , Code and Output (Spinner with Text)         (a)   open   activity_main.xml   file and add the bellow code             <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:background="@color/wal...