Skip to content

Instantly share code, notes, and snippets.

@adrianRodriguez123
Created September 1, 2022 07:43
Show Gist options
  • Save adrianRodriguez123/8c14978b56181c8d83eb8e4a84c94877 to your computer and use it in GitHub Desktop.
Save adrianRodriguez123/8c14978b56181c8d83eb8e4a84c94877 to your computer and use it in GitHub Desktop.
Código Android (xml) sobre las imágenes de que se muestran en el catálogo de accesibilidad
<!-- Fuente del texto -->
<TextView
android:id="@+id/helloworld"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="50dp"/>
<!--Header-->
<TextView
android:id="@+id/helloworld"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="50dp"
android:accessibilityHeading="true"/>
<!--Focusable-->
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="Introduzca su nombre"
android:focusable="true"
android:focusableInTouchMode="false"/>
<!--labelFor-->
<TextView
android:id="@+id/helloworld"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Introduzca su nombre"
android:labelFor="@+id/editTextNombre"
/>
<EditText
android:id="@+id/editTextNombre"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<!--Dark mode-->
<!--En el fichero colors.xml de nuestro proyecto-->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#52a871</color>
<color name="colorAccent">#FFe6782a</color>
</resources>
<!--En el fichero styles.xml-->
<?xml version="1.0" encoding="utf-8"?>
<resources>Theme.MaterialComponents.DayNight.NoActionBar</resources>
<!--Navegando por la pantalla-->
<TextView
android:id="@+id/helloworld"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:nextFocusForward="@+id/editTextNombre"
/>
<EditText
android:id="@+id/editTextNombre"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="Introduzca su nombre"
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment