mirror of
https://github.com/jrpie/Launcher.git
synced 2025-04-11 23:04:32 +02:00
# 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:
parent
6a84b3e435
commit
a9382c1d87
1 changed files with 2 additions and 2 deletions
|
@ -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="<<<<<<"
|
||||
android:textSize="64sp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
Loading…
Add table
Reference in a new issue