TextView textTitle; //변수 textTitle = findViewById(R.id.textTitle); //연결 textTitle.setText("우아아아아아악");
EditText editName; editName = findViewById(R.id.editName); String name = editName.getText().toString().trim(); //Text를 가져와서 String 문자열로 변환하여, 공백을 제거한다.