Skip to content

Commit 4721e9c

Browse files
author
Toastcode
committed
New Changes
1 parent dcf7517 commit 4721e9c

File tree

2 files changed

+12
-18
lines changed

2 files changed

+12
-18
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020
android:enableOnBackInvokedCallback="true"
2121
android:exported="true"
2222
android:launchMode="singleInstance"
23-
android:screenOrientation="user"
2423
android:windowSoftInputMode="stateHidden"
25-
tools:ignore="DiscouragedApi"
2624
tools:targetApi="tiramisu">
2725

2826
<intent-filter>

app/src/main/res/layout/dialog_about.xml

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,27 @@
55
android:id="@+id/linearLayout"
66
android:layout_width="match_parent"
77
android:layout_height="wrap_content"
8-
android:padding="10dp">
8+
android:padding="16dp">
99

1010
<ImageView
1111
android:id="@+id/creator_icon"
12-
android:layout_width="85dp"
13-
android:layout_height="85dp"
14-
android:layout_marginTop="25dp"
15-
android:layout_marginBottom="10dp"
12+
android:layout_width="72dp"
13+
android:layout_height="72dp"
14+
android:layout_marginTop="16dp"
15+
android:layout_marginBottom="8dp"
1616
android:src="@mipmap/ic_launcher"
1717
app:layout_constraintEnd_toEndOf="parent"
1818
app:layout_constraintStart_toStartOf="parent"
1919
app:layout_constraintTop_toTopOf="parent" />
2020

2121
<TextView
2222
android:id="@+id/app_message"
23-
android:layout_width="wrap_content"
23+
android:layout_width="0dp"
2424
android:layout_height="wrap_content"
25-
android:layout_marginStart="24dp"
26-
android:layout_marginTop="10dp"
27-
android:layout_marginEnd="24dp"
25+
android:layout_marginStart="16dp"
26+
android:layout_marginTop="8dp"
27+
android:layout_marginEnd="16dp"
2828
android:gravity="center"
29-
android:maxLines="2"
3029
android:text="@string/developer"
3130
android:textSize="18sp"
3231
android:textStyle="bold"
@@ -36,13 +35,13 @@
3635

3736
<TextView
3837
android:id="@+id/copyright"
39-
android:layout_width="wrap_content"
38+
android:layout_width="0dp"
4039
android:layout_height="wrap_content"
4140
android:layout_marginTop="8dp"
42-
android:singleLine="true"
4341
android:text="© 2025 ToastcodeDev"
44-
android:textSize="16sp"
42+
android:gravity="center"
4543
android:textStyle="bold"
44+
android:textSize="14sp"
4645
app:layout_constraintEnd_toEndOf="parent"
4746
app:layout_constraintStart_toStartOf="parent"
4847
app:layout_constraintTop_toBottomOf="@id/app_message" />
@@ -52,15 +51,12 @@
5251
android:layout_width="35dp"
5352
android:layout_height="35dp"
5453
android:layout_marginTop="16dp"
55-
android:layout_marginBottom="16dp"
5654
android:clickable="true"
5755
android:focusable="true"
5856
android:src="@drawable/ic_github"
5957
app:layout_constraintBottom_toBottomOf="parent"
6058
app:layout_constraintEnd_toEndOf="parent"
61-
app:layout_constraintHorizontal_bias="0.5"
6259
app:layout_constraintStart_toStartOf="parent"
6360
app:layout_constraintTop_toBottomOf="@id/copyright"
6461
tools:ignore="SpeakableTextPresentCheck,TouchTargetSizeCheck" />
65-
6662
</androidx.constraintlayout.widget.ConstraintLayout>

0 commit comments

Comments
 (0)