sachen machen

This commit is contained in:
JG-Cody 2023-09-18 18:24:59 +02:00
parent 2733834df0
commit 9259f669cf
7 changed files with 76 additions and 35 deletions

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="deploymentTargetDropDown">
<runningDeviceTargetSelectedWithDropDown>
<Target>
<type value="RUNNING_DEVICE_TARGET" />
<deviceKey>
<Key>
<type value="SERIAL_NUMBER" />
<value value="R38N50464FV" />
</Key>
</deviceKey>
</Target>
</runningDeviceTargetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2023-09-18T13:23:48.152301762Z" />
</component>
</project>

View File

@ -10,8 +10,8 @@
<option name="gradleJvm" value="jbr-17" />
<option name="modules">
<set>
<option value="/mnt/sshd/Files/Desktop/testing/android/Cringe-Authenticator" />
<option value="/mnt/sshd/Files/Desktop/testing/android/Cringe-Authenticator/app" />
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>

View File

@ -2,6 +2,5 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="/mnt/sshd/Files/Desktop/testing/android/Cringe-Authenticator" vcs="Git" />
</component>
</project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@mipmap/ic_launcher_background">
<EditText
android:id="@+id/input_password_edittext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/password"
android:inputType="textPassword"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<EditText
android:id="@+id/confirm_password_edittext"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:ems="10"
android:hint="@string/password"
android:inputType="textPassword"
app:layout_constraintStart_toStartOf="@+id/confirm_password_textview"
app:layout_constraintTop_toBottomOf="@+id/confirm_password_textview" />
<TextView
android:id="@+id/confirm_password_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/confirm_password"
app:layout_constraintStart_toStartOf="@+id/input_password_edittext"
app:layout_constraintTop_toBottomOf="@+id/input_password_edittext" />
<TextView
android:id="@+id/set_password_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/set_password"
app:layout_constraintBottom_toTopOf="@+id/input_password_edittext"
app:layout_constraintStart_toStartOf="@+id/input_password_edittext" />
<ImageView
android:id="@+id/imageView4"
android:layout_width="0dp"
android:layout_height="208dp"
app:layout_constraintBottom_toTopOf="@+id/input_password_edittext"
app:layout_constraintEnd_toEndOf="@+id/input_password_edittext"
app:layout_constraintStart_toStartOf="@+id/input_password_edittext"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/cringeauth_white" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -1,23 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nestedScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragment.HomeFragment">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleX="0.5"
android:scaleY="0.5"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/cringeauth_white" />
<TextView
android:id="@+id/unlock_password_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is the home fragment"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -52,6 +52,9 @@
<string name="screen_security">Screen Security</string>
<string name="hide_codes">Hide Codes</string>
<string name="enable_encryption">Enable encryption</string>
<string name="password">Password</string>
<string name="set_password">set Password</string>
<string name="confirm_password">confirm Password</string>
<string-array name="view_edit_move_delete">
<item>View</item>
<item>Edit</item>