Android
- 1 ответ
- 0 вопросов
1
Вклад в тег
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 1. Сначала устанавливаем макет
setContentView(R.layout.activity_driver_reg_login);
// 2. Теперь инициализируем элементы интерфейса
driverRegBtn = findViewById(R.id.driverReg);
quest = findViewById(R.id.quest);
driverEmail = findViewById(R.id.driverEmail);
driverPassword = findViewById(R.id.driverPassword);
signInBtn = findViewById(R.id.signIn);
statusDriver = findViewById(R.id.statusDriver);
// 3. Теперь можем работать с элементами
driverRegBtn.setVisibility(View.INVISIBLE);
// Остальной код (EdgeToEdge и т.д.)
EdgeToEdge.enable(this);
ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
return insets;
});
}