From ab21a0756299841723389a98ae2924dcbe28d8ce Mon Sep 17 00:00:00 2001 From: Sean Barbeau Date: Thu, 9 Apr 2020 14:36:59 -0400 Subject: [PATCH] Fix #389 - Force allow "," keyboard entry on locales with "," separator --- GPSTest/src/main/res/layout/benchmark_motion_layout.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GPSTest/src/main/res/layout/benchmark_motion_layout.xml b/GPSTest/src/main/res/layout/benchmark_motion_layout.xml index efc576b94..3b0dd2144 100644 --- a/GPSTest/src/main/res/layout/benchmark_motion_layout.xml +++ b/GPSTest/src/main/res/layout/benchmark_motion_layout.xml @@ -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" /> @@ -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" /> @@ -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" />