mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
* Started from welcome layout to main layout adding content descriptions * Adds UI description section to strings.xml and adds a few content descrpitions * Consolidates UI strings to top of file * fixes nearby typos * Removes content descriptions that clash with pr #4766 * Removes unused elements and reverts out-of-scope changes * Restores pic-of-the-day content description Co-authored-by: joshuamccluskey <jpiff57@gmail.com>
19 lines
No EOL
645 B
XML
19 lines
No EOL
645 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:weightSum="8">
|
|
|
|
<androidx.appcompat.widget.AppCompatSpinner
|
|
android:id="@+id/spinner_caption_languages"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:contentDescription="@string/row_item_caption"
|
|
android:minWidth="1dp"
|
|
android:padding="0dp"
|
|
android:spinnerMode="dialog" />
|
|
|
|
|
|
</LinearLayout> |