我需要版本> = 16的带有阴影(高度)的圆形ImageView,我决定尝试FAB。
问题: 如果 fabsize - 正常
如果您选择 fabCustomSize(75dp)>fabsize(normal) - 工作,但图像太小: fabcustomsize 75dp
XML:
<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"
android:background="@color/colorBlueLightLight"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:orientation="horizontal">
<android.support.design.widget.FloatingActionButton
android:id="@+id/floatingActionButton"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_weight="1"
android:clickable="true"
app:backgroundTint="#C4C4C4"
app:borderWidth="0dp"
app:elevation="4dp"
app:fabCustomSize="75dp"
app:fabSize="normal"
app:rippleColor="#25FAFAFA"
app:srcCompat="@drawable/mute_2"
app:useCompatPadding="false" />
</LinearLayout>
其他两个按钮具有相同的代码