Android文本框如何变成白色

avatar
作者
猴君
阅读量:0

要将Android文本框的背景颜色设置为白色,可以通过以下方法实现:

  1. 在XML布局文件中,可以通过设置android:background属性将文本框的背景颜色设置为白色,如下所示:
<EditText     android:id="@+id/editText"     android:layout_width="match_parent"     android:layout_height="wrap_content"     android:background="@android:color/white" /> 
  1. 在Java代码中,也可以通过设置文本框的背景颜色来实现,如下所示:
EditText editText = findViewById(R.id.editText); editText.setBackgroundColor(getResources().getColor(android.R.color.white)); 

通过以上方法,可以将Android文本框的背景颜色设置为白色。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!