我正在使用EditText
来支持粗体,斜体和下划线的属性。选择文本并单击按钮以加粗文本后,我成功了。
现在我想在选择文本并单击粗体按钮后再次删除粗体。
根本没有将标志设置为粗体并删除粗体。我必须知道我们选择的文本是粗体,如果是粗体,我们必须通过单击相同的按钮删除粗体。需要此文本编辑器才能支持2.3版。
非常感谢任何帮助。感谢:)
答案 0 :(得分:1)
下面的代码开始了解如何扩展EditText类。这段代码的作用是在每行单词下画一条线。但是,这不提供rtf。
public class LinedEditText extends EditText {
private Rect mRect;
private Paint mPaint;
// we need this constructor for LayoutInflater
public LinedEditText(Context context, AttributeSet attrs) {
super(context, attrs);
mRect = new Rect();
mPaint = new Paint();
mPaint.setStyle(Paint.Style.FILL_AND_STROKE);
// set your own color here, referencing color resource file
int color = ContextCompat.getColor(context, R.color.edit_note_line);
mPaint.setColor(color);
}
@Override
protected void onDraw(Canvas canvas) {
//int count = getLineCount();
int height = getHeight();
int line_height = getLineHeight();
int count = height / line_height;
if (getLineCount() > count)
count = getLineCount();//for long text with scrolling
Rect r = mRect;
Paint paint = mPaint;
int baseline = getLineBounds(0, r);//first line
for (int i = 0; i < count; i++) {
canvas.drawLine(r.left, baseline + 1, r.right, baseline + 1, paint);
baseline += getLineHeight();//next line
}
super.onDraw(canvas);
}
}