pdlivexp/common/src/main/res/layout/dialog_open_bottom_ad.xml

32 lines
1.2 KiB
XML
Raw Normal View History

2023-09-15 10:04:02 +08:00
<?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="wrap_content">
2024-06-01 14:33:27 +08:00
<LinearLayout
android:id="@+id/content_layout"
2023-09-15 10:04:02 +08:00
android:layout_width="0dp"
android:layout_height="wrap_content"
2024-06-01 14:33:27 +08:00
android:orientation="vertical"
2023-09-15 10:04:02 +08:00
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
2024-06-01 14:33:27 +08:00
app:srcCompat="@mipmap/background_gift_wall">
</LinearLayout>
2023-09-15 10:04:02 +08:00
<ImageView
android:id="@+id/close"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_marginEnd="14dp"
android:layout_marginBottom="12dp"
2024-06-01 14:33:27 +08:00
app:layout_constraintBottom_toTopOf="@+id/content_layout"
2023-09-15 10:04:02 +08:00
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@mipmap/ic_open_ad_close" />
</androidx.constraintlayout.widget.ConstraintLayout>