我需要版本> = 16的带有Shadow(elevation)的Circle ImageView,我决定尝试使用FAB。
如果您选择fabCustomSize(75dp)> fabsize(正常)-可以工作,但是图像很小: 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>
另外两个按钮具有相同的代码
答案 0 :(得分:0)
此解决方案仅适用于AndroidX,您可以阅读@answer来迁移到AndroidX。在工厂中使用app:maxImageSize="50dp"
。
如果您暂时不想使用AndroidX,请将此二维码放入您的dimens.xml
<dimen name="design_fab_image_size" tools:override="true">70dp</dimen>
如果要设置android:layout_width
,请不要设置android:layout_height
和app:fabCustomSize
。这样您的晶圆厂将不会像正方形。