在布局文件中手动添加属性,或使用插件和库来自动添加属性。
具体解决方法如下:
在上面的示例中,我们手动添加了文本颜色属性,以使文字显示为黑色。
//在build.gradle中添加依赖 dependencies { implementation 'com.jakewharton:butterknife:8.8.1' annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' }
//在Activity中使用ButterKnife注解 public class MainActivity extends AppCompatActivity { @BindView(R.id.label) TextView mLabel;
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.bind(this); mLabel.setTextColor(Color.BLACK); } }
在上面的示例中,我们使用ButterKnife库自动绑定标签,然后使用TextView的setTextColor()方法将文本颜色设置为黑色。