# Tutorial improvements.

## Replace ">>>>>" with "<<<<<<"
- To better visually indicate the direction the user should swipe. Maybe I'm the only one dumb enough to look at the > arrow and swipe that way, which gets you nowhere.
- Ran into a bug here when literally typing in "<"
````The value of attribute “android:text” associated with an element type “TextView” must not contain the '<' character```
- Fixed with the help of [this thread comment](https://stackoverflow.com/a/40971204/22771801).
Change the id to match the respective arrow direction (was '...right' is now '...left').
This commit is contained in:
Luke Wass 2025-03-14 13:26:02 -05:00
parent 6a84b3e435
commit a9382c1d87

View file

@ -23,10 +23,10 @@
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tutorial_start_icon_right"
android:id="@+id/tutorial_start_icon_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=">>>>>>"
android:text="&lt;&lt;&lt;&lt;&lt;&lt;"
android:textSize="64sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"