I read with BufferedReader text from a system file; this text contains, for example, 5 WORDS, but in another case it can contain fewer or more words. Then I put this text (t
i think this line will help you
String[] a= new String[10];
a[0]="abc";
a[1]="xyz";
a[2]="pqr";
.....
.....
spin = (Spinner) findViewById(R.id.TimeSpinner);
ArrayAdapter adapter = new ArrayAdapter(TimeSpin.this, android.R.layout.simple_spinner_item, a);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spin.setAdapter(adapter);
spin.setSelection(0);