Skip to content

Commit

Permalink
Limited MOAT Solution Length to spec's 20 byte limit
Browse files Browse the repository at this point in the history
  • Loading branch information
bitmold committed May 11, 2020
1 parent 0a3a4f7 commit 9b3afa5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/src/main/res/layout/activity_moat.xml
Expand Up @@ -4,8 +4,8 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/dark_purple"
android:orientation="vertical"
tools:context=".ui.onboarding.MoatActivity">

<com.google.android.material.appbar.AppBarLayout
Expand All @@ -29,7 +29,7 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
Expand Down Expand Up @@ -67,7 +67,8 @@
android:ems="10"
android:hint="@string/enter_characters_from_image"
android:imeOptions="actionSend"
android:inputType="textShortMessage|text" />
android:inputType="textShortMessage|text"
android:maxLength="20" />

<Button
android:id="@+id/requestBt"
Expand Down

0 comments on commit 9b3afa5

Please sign in to comment.