Password list get's loaded in the background

- User has to repeat his passphrase
- Passwords can now be toggled
- Error message on wrong passphrase on decryption
This commit is contained in:
2020-07-12 19:51:30 +02:00
parent 1bb1b55452
commit 2efdce87a8
96 changed files with 166 additions and 168 deletions

View File

@@ -100,11 +100,12 @@
android:layout_height="68dp"
android:layout_marginStart="16dp"
android:background="@color/colorPrimary"
android:ems="10"
android:fontFamily="sans-serif-black"
android:gravity="center_vertical"
android:inputType="textPassword"
android:singleLine="true"
android:textSize="28sp"
android:textColor="@color/colorPrimaryDark"
android:textSize="42sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/password_label" />
@@ -162,13 +163,13 @@
android:id="@+id/password_hide"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="60dp"
android:layout_marginStart="28dp"
android:background="@color/colorPrimary"
app:layout_constraintBottom_toBottomOf="@+id/password_input"
app:layout_constraintStart_toEndOf="@+id/password_input"
app:layout_constraintTop_toTopOf="@+id/password_input"
app:layout_constraintVertical_bias="0.437"
app:srcCompat="@drawable/baseline_visibility_black_36" />
app:layout_constraintVertical_bias="0.45"
app:srcCompat="@drawable/ic_visibility_on" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>