要使用Android材料设计的TextInputLayout风格的OutlinedBox,需要确保以下几点:
implementation 'com.google.android.material:material:1.5.0'
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTheme(R.style.Theme_MaterialComponents);
setContentView(R.layout.activity_main);
}
这样,你应该能够正确地显示Android材料设计的TextInputLayout风格的OutlinedBox。如果这些步骤仍然不起作用,可能需要检查你的项目的依赖关系,确保没有其他库与Material Components库冲突。