时人不识凌云木,直待凌云始道高。这篇文章主要讲述Android--去除EditText边框,加入下划线相关的知识,希望能为你提供帮助。
< span style=" font-family: Arial, Helvetica, sans-serif; " > < ?xml version=" 1.0" encoding=" utf-8" ?> < /span>
< LinearLayout xmlns:android=" http://schemas.android.com/apk/res/android" android:layout_width=" fill_parent" android:layout_height=" fill_parent" > < !--注意名称 --> < com.marine.study.LineEditTextandroid:id=" @+id/myEdit" android:layout_width=" fill_parent" android:layout_height=" wrap_content" style=" ?
android:attr/textViewStyle" android:background=" @null" android:textColor=" @null" /> < /LinearLayout>
【Android--去除EditText边框,加入下划线】当中background,能够设置成其它颜色等
textColor不一定要是null,能够设置字体颜色
加下划线
public class LineEditText extends EditText { // 画笔 用来画下划线 private Paint paint; public LineEditText(Context context, AttributeSet attrs) { super(context, attrs); paint = new Paint(); paint.setStyle(Paint.Style.STROKE); paint.setColor(Color.RED); // 开启抗锯齿 较耗内存 paint.setAntiAlias(true); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); // 得到总行数 int lineCount = getLineCount(); // 得到每行的高度 int lineHeight = getLineHeight(); // 依据行数循环画线 for (int i = 0; i < lineCount; i++) { int lineY = (i + 1) * lineHeight; canvas.drawLine(0, lineY, this.getWidth(), lineY, paint); } } }
推荐阅读
- 用Kotlin开发android平台语音识别,语义理解应用(olamisdk)
- android源码编译——从此走上Liunx的不归路
- 安装office2016时弹出microsoft setup bootstrapper已停止工作的解决办法
- android studio 使用第三方模拟器,进行android开发
- Ionic菜单
- Ionic加载
- Ionic列表
- Ionic安装详细步骤
- Ionic输入