FloatingActionButton พร้อมข้อความแทนรูปภาพ


86

ฉันกำลังพยายามหาวิธีแก้ไข FloatingActionButton จากไลบรารีสนับสนุนของ Android ใช้กับข้อความแทนรูปภาพได้หรือไม่?

บางอย่างเช่นนี้:

ใส่คำอธิบายภาพที่นี่

ฉันเห็นว่ามันขยาย ImageButton ดังนั้นฉันคิดว่าไม่ใช่ ฉันถูกไหม?

สิ่งนี้ถูกต้องในแง่ของการออกแบบวัสดุโดยทั่วไปหรือไม่

คำตอบ:


26

ด้วย API 28 คุณสามารถเพิ่มข้อความใน Fabs โดยใช้:

เยี่ยมชม: 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

1
@JobM คุณช่วยฉันไว้หลายทศวรรษ ขอบคุณ
Moinkhan

102

ขอบคุณทุกคน.

นี่คือวิธีแก้ปัญหาง่ายๆที่ฉันพบสำหรับคำถามนี้ ทำงานได้อย่างถูกต้องสำหรับ Android 4+ สำหรับ Android 5+ จะถูกเพิ่มพารามิเตอร์เฉพาะ android: การยกระดับเพื่อวาด TextView บน FloatingActionButton

<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>

3
TextView แสดงเงาเนื่องจากคุณสมบัติการยกระดับ
Lavekush Agrawal

พยายามเพิ่มแอตทริบิวต์android:layout_margin="20dp"ใน FloatingActionButton เพื่อแก้ไขปัญหาเงา รอการแก้ไขที่ดีกว่า
Long Ranger

เพิ่มandroid:includeFontPadding="false"ในTextViewแท็กเพื่อประสิทธิภาพที่ดีขึ้น

android: Elevation = "16dp" ใช้ได้เฉพาะกับ API 21 ขึ้นไป
แดง 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

น่ารักด้วยการเปลี่ยนแปลงเล็กน้อยฉันทำให้มันทำงานได้ในการแปลงแบบอักษรไอคอนเป็น drawables
SolidSnake

1
@ Ankur_009: พื้นที่ปุ่มมี จำกัด นั่นคือสาเหตุที่คุณไม่เห็นการเปลี่ยนแปลงขนาดตัวอักษร ดังนั้นหากข้อความของคุณใช้พื้นที่เต็มบนปุ่มอยู่แล้วการทำให้ข้อความใหญ่ขึ้นจะไม่มีผล
j3App

2
@ pratz9999 ฉันตั้งเป็น 1,000 แต่ก็ยังไม่เปลี่ยน
Shivam Pokhriyal

30

FAB มักจะใช้ในCoordinatorLayouts คุณสามารถใช้สิ่งนี้:

<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_behaviorFAB ของคุณคุณจะต้องสร้างสิ่งที่คล้ายกันlayout_behaviorสำหรับไฟล์TextView


1
รับข้อผิดพลาด android.support.design.widget.FloatingActionButton ไม่สามารถส่งไปยัง android.view.ViewGroup
Ankur_009

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

18

คุณไม่สามารถตั้งค่าข้อความFloatingActionButtonจากไลบรารีการสนับสนุน แต่สิ่งที่คุณทำได้คือสร้างภาพข้อความโดยตรงจาก android studio:File -> New -> Image Assetจากนั้นใช้สำหรับปุ่มของคุณ

ในแง่ของการออกแบบวัสดุ ; พวกเขาไม่ได้พูดถึงการใช้ข้อความFloatingActionButtonและฉันไม่เห็นเหตุผลใด ๆ ในการทำเช่นนั้นเนื่องจากคุณไม่มีที่ว่างสำหรับข้อความมากนัก


5
ข้อความเช่น "OK" "YES" "NO" "GO" เหมาะกับ FAB ของ ..........
MarsAndBack

สำหรับคำใน FAB โปรดดู Extended Tabs: material.io/design/components/…
Mike Margulies

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"/>

นี่คือสิ่งที่เบิกได้ (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
ไม่มีแอนิเมชั่นระลอกคลื่นในการแก้ปัญหาดังกล่าว
Vlad

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)
}

1

ฉันใช้ 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>

0

การปรับเปลี่ยนคำตอบของเพื่อนเล็กน้อยเพื่อรองรับ Android API ที่ต่ำกว่า 21 เพียงแค่เพิ่มapp:elevation="0dp"ในไฟล์FloatingActionButton

สิ่งนี้อาจช่วยคนอื่นได้!

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.