- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用最新的 Material 组件 - 1.1.0-beta01。
当 ExtendedFloatingActionButton 扩展时,它的高度也会降低。
这是 xml 布局的样子:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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:id="@+id/main_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="56dp"
android:text="Text"
android:textColor="#02220D"
android:backgroundTint="#F2C203"
style="@style/Widget.MaterialComponents.ExtendedFloatingActionButton"
android:textSize="15sp"
android:fontFamily="sans-serif-medium"
android:textStyle="normal"
android:layout_marginBottom="16dp"
android:layout_marginEnd="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:iconTint="#02220D"
app:icon="@drawable/ic_camera"
app:iconPadding="10dp"
android:insetLeft="0dp"
android:insetBottom="0dp"
android:insetTop="0dp"
android:insetRight="0dp"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
我尝试设置最小和最大高度,但没有成功。知道如何在按钮展开和收缩时达到相同的高度吗?
谢谢。
最佳答案
ExtendedFloatingActionButton
是一个 MaterialButton
。
您可以使用 android:minHeight
属性:
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:minHeight="56dp"
../>
否则你可以定义一个自定义样式:
<style name="CustomExtendedFloating" parent="Widget.MaterialComponents.ExtendedFloatingActionButton.Icon">
<item name="android:minHeight">56dp</item>
</style>
关于android - ExtendedFloatingActionButton - 如何在按钮展开时达到与收缩时相同的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58275088/
我正在使用最新的 Material 组件 - 1.1.0-beta01。 当 ExtendedFloatingActionButton 扩展时,它的高度也会降低。 这是 xml 布局的样子:
这个问题在这里已经有了答案: Android FAB icon always black with MaterialComponents theme (11 个回答) 2年前关闭。 我正在尝试添加 颜
我正在使用来自 Material Components for Android 库 1.1.0-alpha06 的新ExtendedFloatingActionButton。它呈现得很好,但“扩展”和
虽然有一个类似的问题,但它并没有给我一个解决方案。当我尝试使用 com.google.android.material.floatingactionbutton.FloatingActionButto
我是一名优秀的程序员,十分优秀!