在处理androidx项目时,我遇到了浮动操作按钮菜单并得到一些奇怪输出的问题。谁能解决这个问题?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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="match_parent"
tools:context=".dashboard">
<com.getbase.floatingactionbutton.FloatingActionsMenu
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd = "true"
android:layout_alignParentBottom="true"
app:fab_addButtonColorNormal="#76ff03"
android:layout_margin="20dp"
app:fab_addButtonColorPressed="#00e676"
app:fab_addButtonPlusIconColor="#ffffff"
>
</com.getbase.floatingactionbutton.FloatingActionsMenu>
</RelativeLayout>
我希望带有菜单的浮动按钮。但是实际输出却有所不同。