setTextColor
是 Android 中用于設置文本顏色的方法,它主要應用于 TextView
及其子類(如 Button
、EditText
等)控件。對于其他類型的控件,如 ImageView
、ProgressBar
等,setTextColor
方法是不適用的。
如果你需要為其他類型的控件設置顏色,你需要使用相應的方法。例如:
對于 ImageView
,你可以使用 setColorFilter
方法設置顏色遮罩:
ImageView imageView = findViewById(R.id.imageView);
imageView.setColorFilter(ContextCompat.getColor(context, R.color.your_color));
對于 ProgressBar
,你可以使用 setProgressTintList
和 setIndeterminateTintList
方法設置進度條的顏色:
ProgressBar progressBar = findViewById(R.id.progressBar);
ColorStateList progressTintList = ContextCompat.getColorStateList(context, R.color.your_progress_color);
progressBar.setProgressTintList(progressTintList);
ColorStateList indeterminateTintList = ContextCompat.getColorStateList(context, R.color.your_indeterminate_color);
progressBar.setIndeterminateTintList(indeterminateTintList);