mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-29 13:53:54 +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>
17 lines
No EOL
675 B
XML
17 lines
No EOL
675 B
XML
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<CheckBox
|
|
android:id="@+id/never_ask_again"
|
|
style="?android:attr/textAppearanceMedium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/dimen_20"
|
|
android:layout_marginTop="@dimen/tiny_padding"
|
|
android:layout_marginEnd="@dimen/dimen_20"
|
|
android:layout_marginBottom="@dimen/tiny_padding"
|
|
android:contentDescription="@string/never_ask_again"
|
|
android:text="@string/never_ask_again" />
|
|
|
|
</FrameLayout> |