Showing posts with label Android Spinner. Show all posts
Showing posts with label Android Spinner. Show all posts

Wednesday, December 26, 2012

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>

Android - Get Selected Item from Spinner Example


GET SELECTED ITEM FROM 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" >

<TextView  android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"  />

<Spinner android:layout_height="wrap_content"
android:id="@+id/spinner1"
android:layout_width="fill_parent" />

</LinearLayout>

Popular Posts