diff options
author | TheScarastic <warabhishek@e.email> | 2022-04-20 20:22:44 +0530 |
---|---|---|
committer | TheScarastic <warabhishek@e.email> | 2022-04-21 12:09:37 +0530 |
commit | 449a87dd92fae4410425515d8191d3be3e3b3938 (patch) | |
tree | 636a42d876f6115836ea05bb45e2708f73528147 /app/src/main/res/layout | |
parent | 5658347ab0099c4f512e19a3807d38758396114a (diff) |
privacycentralapp: Restore location when view is created
* Fix cordinates for chicago and madrid
* Also allow negative cordinates since its possible ;)
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/fragment_fake_location.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/res/layout/fragment_fake_location.xml b/app/src/main/res/layout/fragment_fake_location.xml index 065d222..64432cb 100644 --- a/app/src/main/res/layout/fragment_fake_location.xml +++ b/app/src/main/res/layout/fragment_fake_location.xml @@ -117,7 +117,7 @@ > <com.google.android.material.textfield.TextInputEditText android:id="@+id/edittext_longitude" - android:inputType="numberDecimal" + android:inputType="numberDecimal|numberSigned" android:layout_height="wrap_content" android:layout_width="match_parent" /> @@ -136,7 +136,7 @@ > <com.google.android.material.textfield.TextInputEditText android:id="@+id/edittext_latitude" - android:inputType="numberDecimal" + android:inputType="numberDecimal|numberSigned" android:layout_height="wrap_content" android:layout_width="match_parent" /> |