带有文本而不是图像的FloatingActionButton


Answers:


22

使用API​​ 28,您可以使用以下方法简单地向Fab添加文本:

访问:https//material.io/develop/android/components/extended-floating-action-button/

 <com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_margin="8dp"
      android:contentDescription="@string/extended_fab_content_desc"
      android:text="@string/extended_fab_label"
      app:icon="@drawable/ic_plus_24px"
      app:layout_anchor="@id/app_bar"
      app:layout_anchorGravity="bottom|right|end"/>

嘿,他们终于做到了。也许那是现在使用它的最佳方法。感谢分享。
同志

java.lang.ClassNotFoundException:找不到类“ com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton”
Nirel,

2
github.com/material-components/material-components-android中,您必须使用最新的 implementation 'com.google.android.material:material:1.1.0-alpha06'
Job M

1
它变成一个圆角矩形,如何使其成为圆形按钮?
dx3906

使所有拐角半径30dp
工作M

100

谢谢大家。

这是我为这个问题找到的简单解决方法。在Android 4+上正常工作,为Android 5+添加了特定参数android:elevation以在FloatingActionButton上绘制TextView。

<FrameLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|right">

    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@android:color/transparent" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@android:string/ok"
        android:elevation="16dp"
        android:textColor="@android:color/white"
        android:textAppearance="?android:attr/textAppearanceMedium" />
</FrameLayout>

2
TextView由于高程属性而显示阴影,
Lavekush Agrawal

尝试android:layout_margin="20dp"在FloatingActionButton中添加属性以解决阴影问题。等待更好的解决方案
Long Ranger'Jan

添加android:includeFontPadding="false"TextView标签中以获得更好的性能

android:elevation =“ 16dp”仅与API 21及更高版本兼容。
Red M

57

将文本转换为位图并使用它。它超级容易。

fab.setImageBitmap(textAsBitmap("OK", 40, Color.WHITE));

//method to convert your text to image
public static Bitmap textAsBitmap(String text, float textSize, int textColor) {
    Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
    paint.setTextSize(textSize);
    paint.setColor(textColor);
    paint.setTextAlign(Paint.Align.LEFT);
    float baseline = -paint.ascent(); // ascent() is negative
    int width = (int) (paint.measureText(text) + 0.0f); // round
    int height = (int) (baseline + paint.descent() + 0.0f);
    Bitmap image = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);

    Canvas canvas = new Canvas(image);
    canvas.drawText(text, 0, baseline, paint);
    return image;
}

2
完美,但文字大小没有改变。
Ankur_009

1
@ Ankur_009它的变化。尝试将值增加一个与其浮动大小相当的大小。
pratz9999


1
@ Ankur_009:按钮空间有限,这就是为什么看不到文本大小变化的原因。因此,如果您的文本已经占用了按钮上的全部空间,那么使文本变大将没有效果。
j3App

2
@ pratz9999我什至将其设置为1000,但仍然没有改变
Shivam Pokhriyal

30

FAB通常在中使用CoordinatorLayout。您可以使用此:

<android.support.design.widget.CoordinatorLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto">

    <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:layout_margin="@dimen/fab_margin"               
            app:backgroundTint="@color/colorPrimary" />

      <TextView android:layout_height="wrap_content"
              android:layout_width="wrap_content"
              android:text="OK"
              android:elevation="6dp"
              android:textSize="18dp"
              android:textColor="#fff"
              app:layout_anchor="@id/fab"
              app:layout_anchorGravity="center"/>

</android.support.design.widget.CoordinatorLayout>

这是什么工作

app:layout_anchor="@id/fab"
app:layout_anchorGravity="center"

结果:

结果

如果您要layout_behavior在FAB上使用某些功能,则必须layout_behaviorTextView


1
无法将错误android.support.design.widget.FloatingActionButton
强制转换

1
您确定您的FloatingActionButton位于CoordinatorLayout内部吗?
lokeshrmitra

1
@ Ankur_009此错误android.support.design.widget.FloatingActionButton cannot be cast to android.view.ViewGroup可能是因为您已将TextViewFAB放入内部。请与OP确认标签在哪里关闭。
dumbfingers

TextView的高度也必须大于FAB的高度,否则它将隐藏在FAB的后面
Ali Nem

极好的答案!
Sjd

17

您无法FloatingActionButton从支持库中设置文本,但可以做的是直接从android studio创建文本图像:File -> New -> Image Asset,然后将其用作按钮。

材料设计方面; 他们没有提到将文字与一起使用FloatingActionButton,并且我看不到这样做的任何理由,因为您实际上没有太多的文字空间。


5
诸如“ OK”,“ YES”,“ NO”,“ GO”之类的文本完全适合FAB的.........
MarsAndBack

对于晶圆厂的话,请参阅扩展标签:material.io/design/components/...
迈克·马古利斯

8

我在FAB中需要文本,但我只使用了带有圆形可绘制背景的TextView:

  <TextView
        android:layout_margin="10dp"
        android:layout_gravity="right"
        android:gravity="center"
        android:background="@drawable/circle_background"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#FFF"
        android:textStyle="bold"
        android:fontFamily="sans-serif"
        android:text="AuthId"
        android:textSize="15dp"
        android:elevation="10dp"/>

这是drawable(circle_backgroung.xml):

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">

<solid
    android:color="#666666"/>

<size
    android:width="60dp"
    android:height="60dp"/>
</shape>

在此处输入图片说明


2
这种解决方案没有波纹动画
Vlad18年

2

@NandanKumarSingh的答案https://stackoverflow.com/a/39965170/5279156可行,但我在fab中对代码进行了一些更改(不是xml,因为它们将在类方法中被覆盖)

fab.setTextBitmap("ANDROID", 100f, Color.WHITE)
fab.scaleType = ImageView.ScaleType.CENTER
fab.adjustViewBounds = false

具有类似功能的类setTextBitmap的扩展在哪里ImageView,但它支持多行文本

fun ImageView.setTextBitmap(text: String, textSize: Float, textColor: Int) {
    val paint = Paint(Paint.ANTI_ALIAS_FLAG)
    paint.textSize = textSize
    paint.color = textColor
    paint.textAlign = Paint.Align.LEFT
    val lines = text.split("\n")
    var maxWidth = 0
    for (line in lines) {
        val width = paint.measureText(line).toInt()
        if (width > maxWidth) {
            maxWidth = width
        }
    }
    val height = paint.descent() - paint.ascent()
    val bitmap = Bitmap.createBitmap(maxWidth, height.toInt() * lines.size, Bitmap.Config.ARGB_8888)
    val canvas = Canvas(bitmap)
    var y = - paint.ascent()
    for (line in lines) {
        canvas.drawText(line, 0f, y, paint)
        y += height
    }
    setImageBitmap(bitmap)
}

0

一个很小的修改同志的回答,以支持它的Android API低于21只是添加app:elevation="0dp"FloatingActionButton

这可能会帮助别人!


0

我使用CardView来达到相同的结果

  <androidx.cardview.widget.CardView
            android:layout_width="@dimen/dp80"
            android:layout_height="@dimen/dp80"
            android:layout_gravity="center_horizontal"
            app:cardElevation="@dimen/dp8"
            android:layout_marginBottom="@dimen/dp16"
            android:layout_marginTop="@dimen/dp8"
            app:cardBackgroundColor="@color/colorWhite100"
            app:cardCornerRadius="@dimen/dp40">

            <TextView
                style="@style/TextAppearance.MaterialComponents.Headline4"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center_horizontal"
                android:background="@drawable/shape_go_bg"
                android:text="GO"
                android:gravity="center"
                android:textColor="@color/colorWhite100" />
        </androidx.cardview.widget.CardView>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.