이미지 대신 텍스트가있는 FloatingActionButton


85

Android 지원 라이브러리에서 FloatingActionButton을 수정하는 방법을 알아 내려고 노력 중입니다. 이미지 대신 텍스트와 함께 사용할 수 있습니까?

다음과 같은 것 :

여기에 이미지 설명 입력

ImageButton을 확장하므로 생각하지 않습니다. 내가 맞아?

일반적으로 머티리얼 디자인 측면에서 이것이 맞습니까?

답변:


23

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'
작업 M

1
그것은 둥근 모서리 사각형이됩니다. 둥근 버튼으로 만드는 방법은 무엇입니까?
dx3906 19-06-07

모든 코너 반경 만들기30dp
Job M 19

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"Shadow 문제를 해결하려면 FloatingActionButton에 속성을 추가하십시오 . 더 나은 솔루션을 기다리는 중
Long Ranger

추가 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는 일반적으로 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

17

FloatingActionButton지원 라이브러리에서 텍스트를 설정할 수 없지만 할 수있는 일은 android studio :에서 직접 텍스트 이미지를 File -> New -> Image Asset만든 다음 버튼에 사용하는 것입니다.

머티리얼 디자인 측면에서 ; 그들은 텍스트 사용에 대해 언급하지 않았으며 텍스트를 FloatingActionButton위한 공간이 많지 않기 때문에 그렇게 할 이유가 없습니다.


5
FAB의 내부 완벽하게, "YES", "NO", "GO"맞는 .......... "OK"와 같은 텍스트
MarsAndBack

: 팹 단어를 들어, 확장 탭을 참조 material.io/design/components/...
마이크 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"/>

다음은 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
이러한 솔루션에는 리플 애니메이션이 없습니다
블라드

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

21 이하의 Android API를 지원하기 위해 동지 의 답변에 대한 약간의 수정 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>
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.