我正在基于ViewPager2控件制作类似于旋转木马的组件。 实施轮播后,我得到以下结果:
如您所见,我的中心元素与下一个元素(右侧)重叠,那么我该如何突出显示我的中心元素?
在中心元素上调用 .bringToFront()无效。
附言:我的商品xml:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/layoutMINE"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="95dp"
android:layout_marginRight="95dp"
android:clipChildren="false"
>
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>