Я пытаюсь сделать размер обеих кнопок одинаковыми, но по мере того, как я изменяю размер экрана ниже, размер кнопки увеличивается, как вы можете видеть на изображении.
Щелкните здесь, чтобы просмотреть изображение
Вот код:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black"
tools:context=".Timer">
<Button
android:id="@+id/player1"
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="#696969"
android:text="00:00"
android:textSize="95sp" />
<RelativeLayout
android:id="@+id/rl1"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_below="@+id/player1">
<ImageButton
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_centerInParent="true"
android:src="@drawable/ic_baseline_pause_circle_outline_24"
android:scaleType="centerCrop"
android:background="@android:color/transparent"/>
</RelativeLayout>
<Button
android:id="@+id/player2"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_below="@+id/rl1"
android:layout_alignParentBottom="true"
android:background="#696969"
android:text="00:00"
android:textSize="95sp" />
</RelativeLayout>