Above is a "details" linear layout I have in my app. As you can see the spinner seems to dip down a bit more then the "Level 1" and "Per Level". I have messed with the xml to try and get everything on a common base with out the spinner dropping down but I just cant figure it out. I tried setting the spinners height to "fill_parent" and it does make it on the same base line but no text is shown inside the spinner. Anyone have any ideas on what to do?XML of the layout they are on:\[code\]<LinearLayout android:id="@+id/details" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false" androidrientation="horizontal" > <TextView android:id="@+id/blank" android:layout_width="0dp" android:layout_height="fill_parent" android:layout_weight="2" /> <TextView android:id="@+id/levelOne" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/level_1" /> <TextView android:id="@+id/perLevel" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/per_level" /> <Spinner android:id="@+id/spinner1" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" /> </LinearLayout>\[/code\]This is my XML for the text inside spinner:\[code\]<?xml version="1.0" encoding="utf-8"?><TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/spinnerDisplay"android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="12sp"></TextView>\[/code\]I use this inside of my Class to fill it in with the text size that I want:\[code\]spinLevels = (Spinner) view.findViewById(R.id.spinner1);ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(getActivity(), R.array.LevelChosen, R.layout.spinner_item); spinLevels.setAdapter(adapter);\[/code\]