在Android中,你可以使用以下方法来设置文本框(EditText)的颜色:
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#FF0000" />
在上面的示例中,文本框的颜色被设置为红色(#FF0000)。
EditText editText = findViewById(R.id.editText);
editText.setTextColor(Color.RED);
在上面的示例中,文本框的颜色被设置为红色(Color.RED)。
需要注意的是,如果你想要设置文本框的光标颜色,可以使用android:textCursorDrawable属性来设置。例如:
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textCursorDrawable="@color/red_cursor" />
在上面的示例中,文本框的光标颜色被设置为红色(@color/red_cursor)。
希望对你有所帮助!