Skip to content
Snippets Groups Projects
Unverified Commit 8015b599 authored by Chilja Gossow's avatar Chilja Gossow Committed by GitHub
Browse files

Incognito mode for all edit text fields (EXPOSUREAPP-6596) (#3200)

* add flag to all edit fields
parent 3e04054a
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/colorBackground" android:background="@color/colorBackground"
android:fillViewport="true" android:fillViewport="true"
android:fitsSystemWindows="true"
android:transitionName="contact_diary_shared_content"> android:transitionName="contact_diary_shared_content">
<androidx.constraintlayout.widget.ConstraintLayout <androidx.constraintlayout.widget.ConstraintLayout
...@@ -66,7 +65,7 @@ ...@@ -66,7 +65,7 @@
android:id="@+id/location_name_input_edit" android:id="@+id/location_name_input_edit"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="textCapWords" android:inputType="textCapWords"
android:focusable="true" android:focusable="true"
android:maxLength="250" /> android:maxLength="250" />
...@@ -92,7 +91,7 @@ ...@@ -92,7 +91,7 @@
android:id="@+id/location_phone_input" android:id="@+id/location_phone_input"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="phone" android:inputType="phone"
android:maxLength="250" /> android:maxLength="250" />
...@@ -115,7 +114,7 @@ ...@@ -115,7 +114,7 @@
android:id="@+id/location_email_input" android:id="@+id/location_email_input"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:imeOptions="actionDone" android:imeOptions="actionDone|flagNoPersonalizedLearning"
android:inputType="textEmailAddress" android:inputType="textEmailAddress"
android:maxLength="250" /> android:maxLength="250" />
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:fillViewport="true" android:fillViewport="true"
android:background="@color/colorBackground" android:background="@color/colorBackground"
android:fitsSystemWindows="true"
android:transitionName="contact_diary_shared_content"> android:transitionName="contact_diary_shared_content">
<androidx.constraintlayout.widget.ConstraintLayout <androidx.constraintlayout.widget.ConstraintLayout
...@@ -65,7 +64,7 @@ ...@@ -65,7 +64,7 @@
android:id="@+id/person_name_input" android:id="@+id/person_name_input"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="textCapWords" android:inputType="textCapWords"
android:focusable="true" android:focusable="true"
android:maxLength="250" /> android:maxLength="250" />
...@@ -91,7 +90,7 @@ ...@@ -91,7 +90,7 @@
android:id="@+id/person_phone_number_input" android:id="@+id/person_phone_number_input"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="phone" android:inputType="phone"
android:maxLength="250" /> android:maxLength="250" />
...@@ -115,7 +114,7 @@ ...@@ -115,7 +114,7 @@
android:id="@+id/person_email_input" android:id="@+id/person_email_input"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:imeOptions="actionDone" android:imeOptions="actionDone|flagNoPersonalizedLearning"
android:inputType="textEmailAddress" android:inputType="textEmailAddress"
android:maxLength="250" /> android:maxLength="250" />
......
...@@ -61,8 +61,8 @@ ...@@ -61,8 +61,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusable="true" android:focusable="true"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="textPersonName" /> android:inputType="textPersonName|textCapWords" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
...@@ -84,8 +84,8 @@ ...@@ -84,8 +84,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusable="true" android:focusable="true"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="textPersonName" /> android:inputType="textPersonName|textCapWords" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
android:cursorVisible="false" android:cursorVisible="false"
android:focusable="true" android:focusable="true"
android:focusableInTouchMode="false" android:focusableInTouchMode="false"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="date" /> android:inputType="date" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
...@@ -133,8 +133,8 @@ ...@@ -133,8 +133,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusable="true" android:focusable="true"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="text" /> android:inputType="textCapWords" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
...@@ -155,8 +155,8 @@ ...@@ -155,8 +155,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusable="true" android:focusable="true"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="text" /> android:inputType="number" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
...@@ -180,8 +180,8 @@ ...@@ -180,8 +180,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusable="true" android:focusable="true"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="text" /> android:inputType="textCapWords" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
...@@ -203,7 +203,7 @@ ...@@ -203,7 +203,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusable="true" android:focusable="true"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="phone" /> android:inputType="phone" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
...@@ -226,7 +226,7 @@ ...@@ -226,7 +226,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusable="true" android:focusable="true"
android:imeOptions="actionNext" android:imeOptions="actionNext|flagNoPersonalizedLearning"
android:inputType="textEmailAddress" /> android:inputType="textEmailAddress" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
...@@ -247,4 +247,4 @@ ...@@ -247,4 +247,4 @@
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
tools:enabled="false" /> tools:enabled="false" />
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment