<?xml version="1.0" encoding="utf-8"?><!-- ~ Copyright © 2014-2024 The Android Password Store Authors. All Rights Reserved. ~ SPDX-License-Identifier: GPL-3.0-only --> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="16dp"> <com.google.android.material.textfield.TextInputLayout android:id="@+id/git_auth_passphrase_layout" android:layout_width="match_parent" android:layout_height="wrap_content" app:endIconMode="password_toggle" app:errorEnabled="true" app:hintEnabled="true" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent"> <com.google.android.material.textfield.TextInputEditText android:id="@+id/git_auth_credential" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/ssh_keygen_passphrase" android:inputType="textPassword" /> <requestFocus /> </com.google.android.material.textfield.TextInputLayout> <com.google.android.material.checkbox.MaterialCheckBox android:id="@+id/git_auth_remember_credential" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/git_operation_remember_passphrase" app:checkedState="checked" app:layout_constraintRight_toRightOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/git_auth_passphrase_layout" /> </androidx.constraintlayout.widget.ConstraintLayout>