6

TextView で斜めに取り消し線を引く簡単な方法はありますか? 今、私はこのコードを使用しています:

textview.setPaintFlags(textview.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

しかし、私はこのようなものが必要です:
ここに画像の説明を入力
私はペイントAPIにあまり慣れていないので、これを簡単に達成する方法はありません.
ありがとうございました。

4

1 に答える 1

11

カスタムTextViewクラスを使えば簡単です。詳細については、ドキュメントのキャンバス ガイドを参照してください。色/幅を変更できるコメントに注意してください。

public class ObliqueStrikeTextView extends TextView
{
    private int dividerColor;
    private Paint paint;

    public ObliqueStrikeTextView(Context context)
    {
        super(context);
        init(context);
    }

    public ObliqueStrikeTextView(Context context, AttributeSet attrs)
    {
        super(context, attrs);
        init(context);
    }

    public ObliqueStrikeTextView(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs, defStyle);
        init(context);
    }

    private void init(Context context)
    {
        Resources resources = context.getResources();
        //replace with your color
        dividerColor = resources.getColor(R.color.black);

        paint = new Paint();
        paint.setColor(dividerColor);
        //replace with your desired width
        paint.setStrokeWidth(resources.getDimension(R.dimen.vertical_divider_width));
    }

    @Override
    protected void onDraw(Canvas canvas)
    {
        super.onDraw(canvas);
        canvas.drawLine(0, getHeight(), getWidth(), 0, paint);
    }
}

次のように、パッケージでビューを完全に修飾することにより、レイアウト ファイルで使用できます。

<your.package.name.ObliqueStrikeTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="1234567890"
        android:textSize="20sp"/>

最終結果は次のとおりです。

スクリーンショット

于 2012-06-26T17:10:48.027 に答える