1

i am trying to change font size in spinner by writing in xml file in layout as follows.But it seems that the text size appears in spinner remains unchanged. Can any body answer me how . I am writing my code here...<Spinner android:id="@+id/spinner12" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="15sp" />

NeoMatrix
  • 3
  • 3

1 Answers1

2

You can make a separate xml layout file for each spinner item. and call it from the array adapter. It should work .

Sibi
  • 101
  • 1
  • 1
  • 4