我想在我的应用中显示如下文字。我正在使用样式Paint
的{{1}}类来实现此目的。但只有一种方法FILL_AND_STROKE
可用于设置颜色。
如何设置不同的笔触和填充颜色?
答案 0 :(得分:19)
内部自定义TextView(在EditText中不起作用):
@Override
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);
}
答案 1 :(得分:16)
不要使用FILL_AND_STROKE。使用FILL绘制一次,然后更改颜色并使用STROKE绘制。
(适用于矩形。我不确定STROKE是否适用于文本。你必须尝试并查找。)
答案 2 :(得分:0)
不完全确定,但也许你可以使用它:
TextView test = (TextView) findViewById(R.id.test);
test.setShadowLayer(float, float, float, int);
答案 3 :(得分:0)
我使用上面的第一个解决方案来提出这个想法:放下一个更大的行程文本,然后用更小的FILL_AND_STROKE文本覆盖它:
mScorePaint = new TextPaint();
mScorePaint.setTextSize(63);
mScorePaint.setStyle(Style.STROKE);
mScorePaint.setStrokeJoin(Join.ROUND);
mScorePaint.setStrokeMiter(10.0f);
mScorePaint.setStrokeWidth(frameWidth/50.0f); // about 12
mScorePaint.setColor(0xffff0000); // black
c.drawText(Integer.toString(mScore), x, y, mScorePaint); // red first
mScorePaint.setStrokeWidth(frameWidth/125.0f); // about 5
mScorePaint.setColor(0xff000000); // red
c.drawText(Integer.toString(mScore), x, y, mScorePaint); // black on top
因为单独的FILL没有看到任何Stroke属性而且非常薄。
答案 4 :(得分:0)
import android.annotation.SuppressLint
import android.content.Context
import android.graphics.Canvas
import android.graphics.Paint
import android.graphics.Paint.Join
import android.graphics.Rect
import android.util.AttributeSet
import android.widget.TextView
@SuppressLint("AppCompatCustomView")
class BorderTextView @JvmOverloads constructor(
context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0
) : TextView(context, attrs, defStyleAttr) {
private var strokeWidth: Float = 0F
private val paintStroke = Paint(Paint.ANTI_ALIAS_FLAG)
init {
paint.color = currentTextColor
paint.typeface = typeface
if (attrs != null) {
val a = context.obtainStyledAttributes(attrs, R.styleable.BorderTextView)
if (a.hasValue(R.styleable.BorderTextView_strokeColor)) {
strokeWidth =
a.getDimensionPixelSize(R.styleable.BorderTextView_strokeWidth, 1).toFloat()
val strokeColor = a.getColor(R.styleable.BorderTextView_strokeColor, 0)
val strokeMiter =
a.getDimensionPixelSize(R.styleable.BorderTextView_strokeMiter, 10).toFloat()
var strokeJoin: Join? = null
when (a.getInt(R.styleable.BorderTextView_strokeJoinStyle, 2)) {
0 -> strokeJoin = Join.MITER
1 -> strokeJoin = Join.BEVEL
2 -> strokeJoin = Join.ROUND
}
setStroke(strokeWidth, strokeColor, strokeJoin, strokeMiter)
}
a.recycle()
}
}
private fun setStroke(width: Float, color: Int, join: Join?, miter: Float) {
paintStroke.strokeJoin = join
paintStroke.strokeMiter = miter
paintStroke.strokeWidth = width
paintStroke.style = Paint.Style.STROKE
paintStroke.color = color
paintStroke.textSize = textSize
paintStroke.typeface = typeface
paintStroke.letterSpacing = letterSpacing
}
override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec)
this.setMeasuredDimension(measuredWidth + strokeWidth.toInt(), measuredHeight);
}
override fun onDraw(canvas: Canvas) {
val r = Rect()
paint.getTextBounds(text.toString(), 0, text.length, r)
val desc = paint.descent()
val asc = paint.ascent()
val y = (height.toFloat() - (1 + asc + desc / 2F)) / 2F
val x = width / 2f - r.width() / 2f - r.left
canvas.drawText(text.toString(), x, y, paintStroke)
canvas.drawText(text.toString(), x, y, paint)
}
}