UI improvements:
- Remove header - Remove logo image - Enlarge password text form
This commit is contained in:
parent
8bac2d412d
commit
e46b93f0ec
@ -11,8 +11,8 @@ android {
|
|||||||
applicationId = "cz.bugsy.passwordzebra"
|
applicationId = "cz.bugsy.passwordzebra"
|
||||||
minSdk = 29
|
minSdk = 29
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 5
|
versionCode = 6
|
||||||
versionName = "1.4.0"
|
versionName = "1.5.0"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -25,7 +25,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
generateButton = findViewById(R.id.generateButton)
|
generateButton = findViewById(R.id.generateButton)
|
||||||
passwordTextView = findViewById(R.id.passwordTextView)
|
passwordTextView = findViewById(R.id.passwordTextView)
|
||||||
iconImageView = findViewById(R.id.iconImageView)
|
//iconImageView = findViewById(R.id.iconImageView)
|
||||||
generateButton = findViewById(R.id.generateButton)
|
generateButton = findViewById(R.id.generateButton)
|
||||||
switchWithoutSpaces = findViewById(R.id.switchWithoutSpaces)
|
switchWithoutSpaces = findViewById(R.id.switchWithoutSpaces)
|
||||||
switchSpecialChars = findViewById(R.id.switchSpecialChars)
|
switchSpecialChars = findViewById(R.id.switchSpecialChars)
|
||||||
|
|||||||
@ -5,6 +5,7 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
tools:context=".MainActivity">
|
tools:context=".MainActivity">
|
||||||
|
|
||||||
|
<!--
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/titleTextView"
|
android:id="@+id/titleTextView"
|
||||||
android:layout_width="409dp"
|
android:layout_width="409dp"
|
||||||
@ -17,7 +18,8 @@
|
|||||||
app:layout_constraintHorizontal_bias="0.5"
|
app:layout_constraintHorizontal_bias="0.5"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
-->
|
||||||
|
<!--
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iconImageView"
|
android:id="@+id/iconImageView"
|
||||||
android:layout_width="161dp"
|
android:layout_width="161dp"
|
||||||
@ -29,11 +31,13 @@
|
|||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/titleTextView"
|
app:layout_constraintTop_toBottomOf="@id/titleTextView"
|
||||||
app:tint="@color/design_default_color_primary" />
|
app:tint="@color/design_default_color_primary" />
|
||||||
|
-->
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/passwordTextView"
|
android:id="@+id/passwordTextView"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:minHeight="150dp"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:layout_marginHorizontal="10dp"
|
android:layout_marginHorizontal="10dp"
|
||||||
@ -45,7 +49,7 @@
|
|||||||
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/iconImageView" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/passwordLengthLabel"
|
android:id="@+id/passwordLengthLabel"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user