Hello everybody, I've noticed that layout_alignBaseline of TextVew control doesn't work with Spinner control. I'm trying to place a text to the left of spinner, but it goes to the top of the parent control.
<Spinner
android:id="@+id/locations"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/userCode"
android:layout_alignLeft="@id/userCode"
android:layout_marginTop="15dip"
/>
<TextView
android:id="@+id/locationsLbl"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Region"
android:layout_alignBaseline="@id/locations"
/>
Is it a bug or I do something wrong? The same technique works fine with EditText controls.