Я добавляю диалоговое окно в свое приложение и хочу разместить кнопку «Закрыть / закрыть» над моим TextView, который имеет собственный фон с закругленными углами и белым фоном, но ImageButton продолжает оставаться за TextView.
После постройки
В режиме конструктора
<android.support.constraint.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:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_edittext">
<TextView
android:id="@+id/tCarparkName"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginStart="24dp"
android:layout_marginTop="96dp"
android:layout_marginEnd="24dp"
android:background="@drawable/round_edittext"
android:elevation="4dp"
android:fontFamily="sans-serif-condensed"
android:gravity="center"
android:text="Parkhausname"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/a" />
<ImageButton
android:id="@+id/ibClose"
style="@style/Widget.AppCompat.ImageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/a"
android:layout_alignParentEnd="true"
android:layout_marginTop="107dp"
android:layout_marginEnd="48dp"
android:background="#00000000"
android:cropToPadding="false"
android:visibility="visible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_close" />
</android.support.constraint.ConstraintLayout>