Thursday, April 12, 2012

Android Simple Spinner Example


Android Simple Spinner Example



SIMPLE SPINNER

SOURCE CODE [main.xml] is

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">
<Spinner android:id="@+id/spin"
android:layout_width="150px"
android:layout_height="wrap_content"
android:layout_gravity="center">
</Spinner>
</LinearLayout>

SOURCE CODE [SpinnerExample.java] is

package com.SpinnerExample;

import android.app.Activity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.Spinner;

public class SpinnerExample extends Activity
{
Spinner sp;
                ArrayAdapter<String> adapter;
                String numbers[] = { "ONE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN",
                                                "EIGHT", "NINE", "TEN" };

public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
                                setContentView(R.layout.main);

                                sp = (Spinner) findViewById(R.id.spin);
                                
                                adapter = new ArrayAdapter<String>(this,
                                                                android.R.layout.simple_spinner_item, numbers);
                                sp.setAdapter(adapter);
                }
}

The OUTPUT will be

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjORuUVu7pWvYUfc64aaCqV_Nh_zUbIOcFM7ji0_iwDwM2dYqAYJKFkMeUXh1u0kw8LdbAMJfKJB4xJnUIzyi1zyQyhfyTSSgVyfMTarQ4kCjBw4i9HRqBUtStplIBwuZzTlBFrWaXgIPo/https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvDo0wRg_2hUvRUo0hr5MSMyXS4GmgcpK5MsAoY7rnU1_fkfJ88aEa4Z9FXb-Tt-sjl94-Aa24u43VGmIpzmOMg2APcOsjiLIZrI1LZ5vGjwpyFkocgafH-UPd1xz97a6taCIZsQLEd_A/

No comments: