我找不到一种方法来获得没有边框的FAB。例如,当我尝试:
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/fab"
android:background="@android:color/transparent"
android.support.design:fabSize="normal"
android:adjustViewBounds="true"
style="@style/Fab"/>
我明白了:
注意FAB周围的边框。我试过adjustViewBounds =“true”和android:background =“@ android:color / transparent”这两个都是建议的解决方案,用于摆脱ImageView(FAB扩展)的边框,但都不起作用。我该怎样摆脱这个边界?
注意:所有@ style / Fab都会定位按钮,与边框无关。
答案 0 :(得分:11)
只需在布局文件中添加app:borderWidth="0dp"
:
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/fab"
app:borderWidth="0dp"
android:background="@android:color/transparent"
android.support.design:fabSize="normal"
android:adjustViewBounds="true"
style="@style/Fab"/>
添加此功能还有一个额外的好处,它解决了API&lt; 15中方形FAB的问题。
更新:Android支持的最新更新不需要borderwidth = 0dp来修复方形FAB。
答案 1 :(得分:1)
通过@Zvi进行评论
要使按钮的背景透明,请使用此行:
app:backgroundTint="#00FFFFFF"
透明背景的哈希码为:#00FFFFFF
要更改按钮内图标的颜色,请使用以下方法:
android:tint="#800080"
#800080
是紫色的哈希码
要访问不同颜色的哈希码,请访问:http://www.color-hex.com/color-palettes/
只需复制哈希码并将其粘贴到您想要的任何地方。
答案 2 :(得分:0)
原来是
app:borderWidth="0dp"
我多么愚蠢。谢谢@Ranjith。
这在某种程度上还在按钮下添加了一个阴影: