Мне нужно разместить кнопку (зеленая) в месте, показанном на изображении (красная).
Оно должно быть одинаковым для всех типов экранов телефонов в портретном режиме.
Это середина экрана, но высота меняется в зависимости от размера экрана. Это свойства кнопки. android:layout_marginBottom
не верно для всех размеров экранов.
Кнопка
<ImageView
android:id="@+id/circle_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="100dp"
app:srcCompat="@drawable/circle" />
неправильной формы
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:adjustViewBounds="true"
android:src="@drawable/irregular_shape" />
Требуемый результат
![enter image description here](https://i.stack.imgur.com/vfiHS.jpg)