更改EditText的边框颜色可以通过以下步骤实现:
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/edittext_border" />
edittext_border.xml
的drawable文件,用于定义EditText的边框样式。在该文件中,可以通过设置shape
标签的stroke
属性来更改边框的颜色。例如,将边框颜色设置为红色:<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:color="#FF0000" />
</shape>
setBackground()
方法将刚才创建的drawable文件设置为其背景,从而实现边框颜色的更改。例如:EditText editText = findViewById(R.id.editText);
editText.setBackground(getResources().getDrawable(R.drawable.edittext_border));
通过以上步骤,就可以成功更改EditText的边框颜色为红色。当然,你也可以根据需要自定义其他颜色。
推荐的腾讯云相关产品:无
以上是关于如何更改EditText的边框颜色的完善且全面的答案。
领取专属 10元无门槛券
手把手带您无忧上云