2018-08-22 04:04:46 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-14 17:05:09 +02:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-22 04:04:46 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2018-08-22 04:04:46 +02:00
|
|
|
android:id="@+id/closeButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:layout_marginBottom="24dp"
|
2022-07-06 23:46:39 +02:00
|
|
|
android:src="@drawable/ic_close"
|
2018-08-22 04:04:46 +02:00
|
|
|
app:backgroundTint="@color/light_youtube_primary_color"
|
|
|
|
app:borderWidth="0dp"
|
2022-07-06 23:46:39 +02:00
|
|
|
app:fabSize="normal" />
|
2020-05-14 17:05:09 +02:00
|
|
|
</FrameLayout>
|