이미지 대신 텍스트가있는 FloatingActionButton
Android 지원 라이브러리에서 FloatingActionButton을 수정하는 방법을 알아 내려고 노력 중입니다. 이미지 대신 텍스트와 함께 사용할 수 있습니까?
다음과 같은 것 :
ImageButton을 확장하므로 생각하지 않습니다. 내가 맞아?
일반적으로 머티리얼 디자인 측면에서 이것이 맞습니까?
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"/>
모두에게 감사합니다.
이 질문에 대해 찾은 쉬운 해결 방법은 다음과 같습니다. 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>
텍스트를 비트 맵으로 변환하고 사용합니다. 아주 쉽습니다.
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;
}
FAB는 일반적으로 CoordinatorLayout
s. 이것을 사용할 수 있습니다 :
<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"
결과:
If you're using some layout_behavior
for your FAB, you'll have to make a similar layout_behavior
for the TextView
You can't set text for FloatingActionButton
from the support library, but what you can do, is create a text image directly from android studio : File -> New -> Image Asset
, and then use it for your button.
In the terms of Material Design; they didn't mention using text with FloatingActionButton
, and I don't see any reason for doing that since you don't really have much space for a text.
I was needing text in a FAB but instead I just went with a TextView with a circular drawable background:
<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"/>
Here is the 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>
@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)
}
21 이하의 안드로이드 API를 지원하기 위해 동지 의 대답에 대한 약간의 수정 app:elevation="0dp"
은FloatingActionButton
이것은 다른 사람들을 도울 수 있습니다!
참고 URL : https://stackoverflow.com/questions/33671196/floatingactionbutton-with-text-instead-of-image
'Development Tip' 카테고리의 다른 글
캔버스에서 실제 마우스 위치 (0) | 2020.10.15 |
---|---|
이식 가능한 데이터 형식으로 scipy sparse csr_matrix 저장 /로드 (0) | 2020.10.15 |
작업이 완료 될 때까지 대기 (0) | 2020.10.15 |
설치된 모든 보석을 제거하고 다시 시작 (0) | 2020.10.15 |
Android에서 캐시 디렉토리를 언제 지울까요? (0) | 2020.10.15 |