我想使用半透明背景颜色的FAB。 但我得到了两种不同颜色的FAB。问题是什么?
<android.support.design.widget.FloatingActionButton
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|left"
android:fadingEdgeLength="5dp"
app:borderWidth="0dp"
app:elevation="4dp"
app:backgroundTint="#99f03456"
app:fabSize="normal"/>
没有任何可绘制的。
答案 0 :(得分:10)
在这里遇到同样的问题。 我尝试使用backgroundTint在xml中设置alpha透明度,但它不起作用,导致与截图(两个圆圈)中的外观相同。
所以我在这样的代码中设置它:
floatingButton = (FloatingActionButton) findViewById(R.id.fab);
floatingButton.setAlpha(0.25f);
现在看起来一致。
答案 1 :(得分:8)
除非需要提升,否则您可以删除&#34;内圈&#34;通过将其设置为0:
app:elevation="0dp"
答案 2 :(得分:4)
设置高程并按下TransTransZ零以移除效果
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClickMyLocation"
app:backgroundTint="@color/transparentColor"
app:srcCompat="@drawable/ic_my_location"
app:elevation="0dp"
app:pressedTranslationZ="0dp"/>
答案 3 :(得分:0)
我能够使用Jerzy Chalupski浮动操作按钮解决问题: https://github.com/futuresimple/android-floating-action-button
要在项目中使用,请添加:
compile 'com.getbase:floatingactionbutton:1.10.1'
到您的依赖项,
然后添加:
<com.getbase.floatingactionbutton.FloatingActionButton
android:id="@+id/my_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_marginRight="8dp"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:onClick="myMethod"
fab:fab_icon="@drawable/my_icon"
fab:fab_colorNormal="@color/my_transparent_color"
fab:fab_colorPressed="@color/white"
/>
进入您的XML文件。
它有效