I have a spinner, I want to add a button "Cancel" to the end of spinner so when the user click it the selected element in the spinner doesn't change.
xml
<Spinner
android:id="@+id/s_signin_type"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15dip"
android:layout_marginTop="5dip"
android:prompt="@string/s_type" />
Java Activity
Spinner s_type;
s_type = (Spinner) findViewById(R.id.s_signin_type);
ArrayAdapter<String> adapterType = new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, Data.types);
adapterType
.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
s_type.setAdapter(adapterType);

thanks a lot.
Backrather than touch. – Fernado Margin Feb 6 at 21:50