我的问题是,当我按下FloatingActionButton
时,波纹出现在边界(几乎看不见(,而不是中心。
这是我的自定义风格:
<style name="myFloatingActionButton" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorAccent">@android:color/white</item>
</style>
这是我的FloatingActionButton
:
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/main_close_floatingActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:backgroundTint="@android:color/transparent" //transparent background
android:src="@drawable/close"
android:theme="@style/myFloatingActionButton" //apply custom style
app:elevation="0dp" //remove default shadow
app:fabSize="mini" //adjust size
app:hoveredFocusedTranslationZ="0dp" //remove default clicking effect
app:pressedTranslationZ="0dp" /> //remove default hover effect
任何帮助都将不胜感激。
尝试以下属性,但请记住,它必须位于coordinatorlayout 类型的视图组内
android:layout_gravity="bottom|right"