How I can change the title (color, background, textSize...) of the spinner. I have looked some post, but do not have the same code that my app.
main.class
public class cargarSpinner() {
listaSpinner = new ArrayList<SpinnerInfo>();
listaSpinner = cargarListSpinner();
SpinnerAdapter myAdapter = new SpinnerAdapter
(this,
android.R.layout.simple_spinner_item,
listaSpinner);
spinner.setPrompt("Title");
spinner.setAdapter(myAdapter);
}
spinner_row.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fondoSpinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/spinner_naranja_gradiente"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imageSpinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/textSpinner"
style="@style/SpinnerText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"/>