У меня есть этот макет ниже, я пытался сделать так, чтобы он соответствовал размерам экрана всех телефонов, не меняя расстояния между предметами. Как я могу наложить ограничения на ConstraintLayout
, чтобы они не меняли расстояния?
Я не против изменить тип макета на любой другой макет, Относительный или Линейный, также я добавил свои элементы внутри ConstraintLayout
просто чтобы не работать с LinearLayout
.
<?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="@color/Black"
tools:context=".main.emailstoAdmins">
<ScrollView
android:id="@+id/scrollView3"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="55dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/constraintLayout">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/testImg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="TODO"
app:srcCompat="@drawable/gifaminor" />
</LinearLayout>
</ScrollView>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginBottom="1dp"
app:layout_constraintBottom_toTopOf="@+id/scrollView3"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<Button
android:id="@+id/button21"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/fui_transparent"
android:text="Song Tetorial"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="151dp"
tools:layout_editor_absoluteY="237dp" />
<TextView
android:id="@+id/TextViewCapo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/fui_transparent"
android:hint="capo"
android:textColor="@color/Grey"
android:textColorHint="@color/Grey"
tools:layout_editor_absoluteX="362dp"
tools:layout_editor_absoluteY="158dp" />
<TextView
android:id="@+id/nameOFSongTex"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Name of song"
android:textColor="@color/Grey"
android:textSize="50sp"
tools:layout_editor_absoluteX="9dp"
tools:layout_editor_absoluteY="25dp" />
<TextView
android:id="@+id/SongDefcalty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/fui_transparent"
android:text="songdefcallty"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="184dp" />
<TextView
android:id="@+id/capo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Capo postion"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="158dp" />
<TextView
android:id="@+id/StrumingPattrenTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Struming pattren"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="288dp"
tools:layout_editor_absoluteY="211dp" />
<TextView
android:id="@+id/StrumingPattren"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Strumming pattren"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="211dp" />
<TextView
android:id="@+id/singerTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="singer"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="355dp"
tools:layout_editor_absoluteY="73dp" />
<TextView
android:id="@+id/SongGener"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Song Gener"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="132dp" />
<TextView
android:id="@+id/SongDefecalliyTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="336dp"
tools:layout_editor_absoluteY="184dp" />
<TextView
android:id="@+id/songGenerTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Song Gener"
android:textColor="@color/Grey"
tools:layout_editor_absoluteX="323dp"
tools:layout_editor_absoluteY="132dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>