I want to use spinner in my Activity in android application.
My requirement is, I want to show only 6 items in drop down list at one time if their are more that 6 items then scroll bar should be visible. How to achieve this requirement.
Below is the sample code I am trying for UI in android activity.xml.
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:spinnerMode="dropdown"
android:dropDownVerticalOffset="40dp"
android:forceHasOverlappingRendering="false" />