Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to make Spinner in android ?

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 473
    Comment on it

    Here I have created spinner function in android. Spinner can be used to display the multiple options to the user in which only one item can be selected by the user. Android spinner works like dropdown menu. In dropdown menu there will be multiple values from which the user have to select only one value. In the below code example I have described how to make spinner in android. Step (1)- activity_main.xml.

    1. <RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res/android"  
    2.    xmlns:tools="http://schemas.android.com/tools"  
    3.    android:layout_width="match_parent"  
    4.     android:layout_height="match_parent"  
    5.     tools:context=".MainActivity" >  
    6.   
    7.     <Spinner  
    8.         android:id="@+id/spinner1"  
    9.         android:layout_width="wrap_content"  
    10.         android:layout_height="wrap_content"  
    11.         android:layout_alignParentTop="true"  
    12.         android:layout_centerHorizontal="true"  
    13.        android:layout_marginTop="83dp" />  
    14.   
    15. </RelativeLayout>  

    Step (2)-MainActivity.

    1. public class MainActivity extends Activity implements  
    2. AdapterView.OnItemSelectedListener {  
    3.   
    4.     String[] country = {"UK", "India", "USA", "China", "Japan", "Other" };  
    5.   
    6.     @Override  
    7.    protected void onCreate(Bundle savedInstanceState) {  
    8.         super.onCreate(savedInstanceState);  
    9.         setContentView(R.layout.activity_main);  
    10.        //Getting the instance of Spinner and applying OnItemSelectedListener on it  
    11.         Spinner spin = (Spinner) findViewById(R.id.spinner1);  
    12.         spin.setOnItemSelectedListener(this);  
    13.         ArrayAdapter aa = new ArrayAdapter(this,android.R.layout.simple_spinner_item,country);  
    14.        aa.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);  
    15.      //Setting the ArrayAdapter data on the Spinner  
    16.        spin.setAdapter(aa);  
    17.     }  
    18.     @Override  
    19.     public void onItemSelected(AdapterView<?> arg0, View arg1, int position,long id) {  
    20.         Toast.makeText(getApplicationContext(),country[position] ,Toast.LENGTH_LONG).show();  
    21.     }  
    22.     @Override  
    23.    public void onNothingSelected(AdapterView<?> arg0) {    
    24.     }  
    25.  
    26.     @Override  
    27.     public boolean onCreateOptionsMenu(Menu menu) {  
    28.       getMenuInflater().inflate(R.menu.activity_main, menu);  
    29.         return true;  
    30.     }  
    31. }  

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: