#java #android
Возможно ли сделать такую обводку TextView? Если да, то с чего начать? Пример:
Ответы
Ответ 1
Посмотрите статью на Хабре или библиотеку MagicTextView. Либо поиграться с тенями.Ответ 2
Просмотрев статью на Хабре, я переделал его для TextView. OutlineTextView.java: package com.example.outlinetextview; import android.content.Context; import android.content.res.ColorStateList; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint.Join; import android.graphics.Paint.Style; import android.text.TextPaint; import android.util.AttributeSet; import android.widget.TextView; import com.example.outlinetextview.R; public class OutlineTextView extends TextView { private int strokeColor= Color.TRANSPARENT; private int strokeWidth=2; public OutlineTextView(Context context) { super(context); } public OutlineTextView(Context context, AttributeSet attrs) { super(context, attrs); TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.OutlineTextView); strokeColor = a.getColor(R.styleable.OutlineTextView_textStrokeColor, strokeColor); strokeWidth = a.getDimensionPixelSize(R.styleable.OutlineTextView_textStrokeWidth, strokeWidth); a.recycle(); } public void onDraw(Canvas canvas) { final ColorStateList textColor = getTextColors(); TextPaint paint = this.getPaint(); paint.setStyle(Style.STROKE); paint.setStrokeJoin(Join.ROUND); paint.setStrokeMiter(10); this.setTextColor(strokeColor); paint.setStrokeWidth(strokeWidth); super.onDraw(canvas); paint.setStyle(Style.FILL); setTextColor(textColor); super.onDraw(canvas); } } attrs:.... example.xml:.... Результат: P.S. Надеюсь кому-нить пригодится:)
Комментариев нет:
Отправить комментарий