Skip to content

Practical work 3. In the discipline of Mobile application development

License

Notifications You must be signed in to change notification settings

gomarmadi/GMB05_lab03_AndroidStudio

Repository files navigation

GMB05_lab03_AndroidStudio

Practical work 3. In the discipline of Mobile application development

Screenshot Screenshot Screenshot

МЕТОД ДЛЯ КНОПКИ "ИТОГО"

public void onInfo(View v) {
        Intent intent = new Intent(MainActivity.this, ResultActivity.class);
        
        selectRadioButton = findViewById(radioGroup.getCheckedRadioButtonId());
        
        intent.putExtra("fio", editText.getText().toString());
        intent.putExtra("data", checkBox.isChecked() ? getString(R.string.YES) : getString(R.string.NO));
        intent.putExtra("cource", selectRadioButton.getText());
        intent.putExtra("level", spinner.getSelectedItem().toString());

        startActivity(intent);
    }

Teacher: https://github.com/proffix4

About

Practical work 3. In the discipline of Mobile application development

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages