Merge pull request #487 from mohammadnaseri/master

Password should be invisible to the accessibility services: fixed for entering online storage credentials
This commit is contained in:
PhilippC
2018-08-20 16:47:08 +02:00
committed by GitHub
3 changed files with 6 additions and 3 deletions

View File

@@ -26,6 +26,7 @@
android:hint="@string/http_auth_dialog_password"
android:inputType="textPassword"
android:paddingTop="10dp"
android:paddingBottom="20dp" />
android:paddingBottom="20dp"
android:importantForAccessibility="no" />
</LinearLayout>

View File

@@ -46,7 +46,8 @@
android:inputType="textPassword"
android:singleLine="true"
android:text=""
android:hint="@string/hint_pass" />
android:hint="@string/hint_pass"
android:importantForAccessibility="no" />
<TextView android:id="@+id/initial_dir"
android:layout_width="wrap_content"

View File

@@ -33,6 +33,7 @@
android:inputType="textPassword"
android:singleLine="true"
android:text="$T3st17$"
android:hint="@string/hint_pass" />
android:hint="@string/hint_pass"
android:importantForAccessibility="no" />
</LinearLayout>