作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有全白色背景色调和图像源的 float 按钮。我想用灰色边框包围它。我找不到任何办法。请帮忙。
我刚刚创建了一个普通的 FAB。
这是我的按钮的 XML 代码。
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:fabSize="normal"
android:src="@drawable/addvideo"
app:backgroundTint="#fff"
app:layout_anchor="@+id/bottomAppBar"
android:scaleType="center"
android:id="@+id/myFab"
/>
最佳答案
有点老了,但对初学者有用,你可以用
去除边框颜色可以使用:
app:borderWidth="0dp"
改变边框颜色:
app:borderWidth="2dp"
app:backgroundTint="#F44336"
一个例子:
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:borderWidth="2dp"
app:backgroundTint="#F44336"
android:src="@drawable/ic_select_image_white"
android:backgroundTint="@color/purple_500"/>
关于android - 如何在 float 操作按钮中添加边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53860591/
我是一名优秀的程序员,十分优秀!