Ответ 1
Вы можете изменить эти параметры в файле макета. Приветственный инструмент-spinner очень полезен.
http://developer.android.com/guide/tutorials/views/hello-spinner.html
Добавить новый XML файл в папку макета.
Пример: spinnerLayout.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/spinnerTarget"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="14pt"
android:textColor="#FF8B1500"
android:gravity="center"/>
Измените ресурс адаптера на новый файл макета:
adapter = ArrayAdapter.createFromResource(
this, R.array.sound, R.layout.spinnerLayout);