摘要:
1 /** 2 * A custom EditText that draws lines between each line of text that is displayed. 3 * 这是一个自定义的EditView被画很多行再每两行的中间 4 */ 5 public static class LinedEditText extends EditText { 6 /* 7 * 一个是矩形 一个是装绘 主要显示画图的样式 8 */ 9 private Rect mRect;... 阅读全文