setTextColor
是 Android 中用于设置文本颜色的方法,它在不同的 Android 版本和设备上具有很好的兼容性。这个方法属于 TextView
类,可以在 Android 1.0(API 级别 1)及更高版本的设备上使用。
然而,为了确保最佳的兼容性,建议您使用 ContextCompat.getColor()
方法来设置文本颜色。这个方法可以检查当前设备的主题,并根据需要返回正确的颜色资源。这样可以确保在不同 Android 版本和设备上都能正确设置文本颜色。
示例代码:
import androidx.core.content.ContextCompat;
// ...
TextView textView = findViewById(R.id.textView);
int color = ContextCompat.getColor(context, R.color.your_color);
textView.setTextColor(color);
在这个示例中,context
是一个有效的 Context
对象,your_color
是一个定义在 res/values/colors.xml
文件中的颜色资源 ID。