add label before lang-pick spinner

This commit is contained in:
Eric House 2014-01-30 07:12:32 -08:00
parent a8d01f6de2
commit 3ea86e630d
2 changed files with 17 additions and 5 deletions

View file

@ -8,11 +8,21 @@
android:paddingRight="8dp" android:paddingRight="8dp"
> >
<Spinner android:id="@+id/pick_language" <LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:drawSelectorOnTop="true" >
/> <TextView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/study_langpick"
/>
<Spinner android:id="@+id/pick_language"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true"
/>
</LinearLayout>
<ListView android:id="@id/android:list" <ListView android:id="@id/android:list"
android:layout_width="fill_parent" android:layout_width="fill_parent"

View file

@ -2217,4 +2217,6 @@
<string name="paste_donef">%d word[s] copied</string> <string name="paste_donef">%d word[s] copied</string>
<string name="studylist_titlef">Studylist for %s</string> <string name="studylist_titlef">Studylist for %s</string>
<string name="study_langpick">Your words for:</string>
</resources> </resources>