在Android中,可以通过自定义渲染器来改变下划线的颜色。下面是一个解决方案:
public class CustomEditText extends EditText {
public CustomEditText(Context context) {
super(context);
}
public CustomEditText(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomEditText(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// 获取EditText的底部位置
int bottom = getHeight() - getPaddingBottom();
// 获取EditText的画笔
Paint paint = getPaint();
// 设置画笔颜色为红色
paint.setColor(Color.RED);
// 绘制下划线
canvas.drawLine(getPaddingLeft(), bottom, getWidth() - getPaddingRight(), bottom, paint);
}
}
<com.example.CustomEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello World!" />
这样,就可以将EditText的下划线颜色改为红色。这个解决方案可以应用于需要自定义下划线颜色的场景。
推荐的腾讯云相关产品:腾讯云移动直播(https://cloud.tencent.com/product/mlvb)可以用于实时音视频直播,适用于直播、教育、电商等行业。
领取专属 10元无门槛券
手把手带您无忧上云