Skip to content

Commit

Permalink
Fix #389 - Force allow "," keyboard entry on locales with "," separator
Browse files Browse the repository at this point in the history
  • Loading branch information
barbeau committed Apr 9, 2020
1 parent 9f52814 commit ab21a07
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions GPSTest/src/main/res/layout/benchmark_motion_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
android:layout_height="wrap_content"
android:hint="@string/ground_truth_latitude"
android:inputType="numberDecimal|numberSigned"
android:digits="0123456789,."
android:singleLine="true"
android:ellipsize="end"
android:textSize="@dimen/ground_truth_text_size_expanded" />
Expand All @@ -54,6 +55,7 @@
android:layout_height="wrap_content"
android:hint="@string/ground_truth_longitude"
android:inputType="numberDecimal|numberSigned"
android:digits="0123456789,."
android:singleLine="true"
android:ellipsize="end"
android:textSize="@dimen/ground_truth_text_size_expanded" />
Expand All @@ -72,6 +74,7 @@
android:ellipsize="end"
android:hint="@string/ground_truth_altitude"
android:inputType="numberDecimal|numberSigned"
android:digits="0123456789,."
android:singleLine="true"
android:textSize="@dimen/ground_truth_text_size_expanded" />
</com.google.android.material.textfield.TextInputLayout>
Expand Down

0 comments on commit ab21a07

Please sign in to comment.