Используйте приведенный ниже код согласно вашей необходимости ...
ArrayAdapter adapter = ArrayAdapter.createFromResource(this, R.array.Questions, R.layout.custom_spinner_list);
adapter.setDropDownViewResource(R.layout.customer_spinner);
spin.setAdapter(adapter);
custom_spinner_list.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:text="@+id/TextView01"
android:id="@+id/TextView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="12dp"
android:textColor="#000000">
</TextView>
customer_spinner.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:text="@+id/TextView01"
android:id="@+id/TextView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="12dp"
android:textColor="#000000"
android:height="42dp"
android:gravity="center_vertical"
android:padding = "2dp">
</TextView>