fix: the coordinate values in the input are allowed to be negative

This commit is contained in:
ZCShou 2025-07-27 21:30:33 +08:00
parent 8ef17c2ee8
commit 33e7e84ba7
No known key found for this signature in database
GPG Key ID: 40F856243C184EAB

View File

@ -14,6 +14,7 @@
android:autofillHints="longitude"
android:hint="@string/label_longitude"
android:inputType="numberDecimal"
android:digits="-0123456789."
android:minHeight="48dp" />
<EditText
@ -25,6 +26,7 @@
android:autofillHints="latitude"
android:hint="@string/label_latitude"
android:inputType="numberDecimal"
android:digits="-0123456789."
android:minHeight="48dp" />
<RadioGroup