I am a novice in android app development.
i am trying to do simple title. On design view it looks perfect but at emulator it looks bad and goes off screen.
I used constraintlayout and guidelines to support all screen sizes.
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="0dp"
android:fontFamily="@font/antoniofont"
android:gravity="bottom"
android:text="@string/app_header"
android:textSize="60sp"
app:layout_constraintBottom_toTopOf="@+id/guideline5"
app:layout_constraintEnd_toStartOf="@+id/guideline2"
app:layout_constraintStart_toStartOf="@+id/guideline6"
app:layout_constraintTop_toTopOf="@+id/guideline7" />
2
Answers
I made some changes and i think it works perfectly. Added -
Try this,