Skip to content

Commit 3b04314

Browse files
authored
Fix text behind button issue on smaller screens
On a Pixel 2, the text is behind the top button. Reducing the top margin. Also, center the initial text.
1 parent 6c00ba7 commit 3b04314

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@
6868
android:id="@+id/textview_first"
6969
android:layout_width="wrap_content"
7070
android:layout_height="wrap_content"
71-
android:layout_marginTop="180dp"
71+
android:gravity="center"
72+
android:layout_marginTop="90dp"
7273
android:text="@string/placeholder_txt"
7374
app:layout_constraintEnd_toEndOf="parent"
7475
app:layout_constraintStart_toStartOf="parent"
7576
app:layout_constraintTop_toTopOf="parent" />
76-
</androidx.constraintlayout.widget.ConstraintLayout>
77+
</androidx.constraintlayout.widget.ConstraintLayout>

0 commit comments

Comments
 (0)