欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android实现EditText添加下划线

时间:2021-07-09 08:28:34|栏目:Android代码|点击:

在安卓高版本,默认是有下划线的,其默认下划线的颜色是由其主题颜色来控制的!

控制如下:

 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    **<item name="colorAccent">@color/colorPrimaryDark</item>**

所以,只需要修改colorAccent的颜色,其下划线的颜色既可以修改!

在低版本和高版本中,同样是可以去添加下划线的!方法有二:

方法一:

//此时必须要设置其背景为空
<EditText
    android:background="@null"
    android:drawableBottom="@drawable/line"
    android:hint="请输入您的手机号码"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
//资源名称为 drawable/line
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="@color/colorBlue" />
  <size
    android:height="1dp"
    android:width="1000dp" />
</shape>

方法二:通过自定义editText

public class UnderLineEditText extends EditText {
  private Paint paint;

  public UnderLineEditText(Context context, AttributeSet attrs) {
    super(context, attrs);
    //设置画笔的属性
    paint = new Paint();
    paint.setStyle(Paint.Style.STROKE);
    //设置画笔颜色为红色
    paint.setColor(Color.RED);
  }

  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    /**canvas画直线,从左下角到右下角,this.getHeight()-2是获得父edittext的高度,但是必须要-2这样才能保证
     * 画的横线在edittext上面,和原来的下划线的重合
     */
    canvas.drawLine(0, this.getHeight()-2, this.getWidth()-2, this.getHeight()-2, paint);
  }
}

这里有几点需要注意:

其一:也可以继承android.support.v7.widget.AppCompatEditText,但是有时会出现获取不到焦点的现状

其二:下划线的的位置确定

上一篇:Android自定义动画根据控件Y轴旋转动画(仿红包)

栏    目:Android代码

下一篇:Android图片加载框架Glide的基本用法介绍

本文标题:Android实现EditText添加下划线

本文地址:http://www.codeinn.net/misctech/155014.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有