Я получаю дополнительные пробелы ниже CardStackView, когда бы я ни использовал его.Кажется, это не поле или отступ.
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:background="@color/colorDeadBackground"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:outlineProvider="bounds"
android:orientation="vertical">
<com.yuyakaido.android.cardstackview.CardStackView
android:id="@+id/card_stack_view_zoom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="0dp"
android:clipToPadding="false"
/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/back_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/double_arrow"
app:backgroundTint="@color/colorPrimary"
app:fabSize="auto"
app:rippleColor="#22ED7563"
android:layout_gravity="end"
android:layout_margin="3dp"
app:useCompatPadding="true"
android:padding="0dp"/>
<TextView
android:layout_gravity="bottom"
android:id="@+id/name"
android:textSize="30sp"
android:padding="20sp"
android:textColor="@color/colorBlack"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
[...]
Пробел находится между CardStackView
и FAB
.
Может ли это быть проблемой с AndroidX?
Я пытался установить отступы и поля на 0 без эффекта.