use of com.lieverandiver.thesisproject.adapter.QuizInputAdapter in project classify-system by anverliedoit.
the class QuizInputActivity method init.
public void init() {
try {
editTextName = (EditText) findViewById(R.id.input_name6);
editTextTotal = (EditText) findViewById(R.id.input_total6);
textViewDate = (TextView) findViewById(R.id.input_date6);
buttonSubmit = (ToggleButton) findViewById(R.id.input_submit6);
btnBack = (Button) findViewById(input_back6);
dialogFailed = (CardView) findViewById(R.id.input_failed6);
dialogSucces = (CardView) findViewById(R.id.input_succes6);
btnOk = (Button) findViewById(R.id.input_ok6);
btnTryAgain = (Button) findViewById(input_tryagain6);
getDialogEmptyTotal = (CardView) findViewById(R.id.input_failedemp6);
getBtnTryAgainEmptyTotal = (Button) findViewById(input_tryagainemp6);
toggleButtonhideandshow = (ToggleButton) findViewById(R.id.input_hideandshow6);
frameLayouthideandshow = (FrameLayout) findViewById(R.id.input_detailts6);
toggleButtonhideandshow.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
frameLayouthideandshow.setVisibility(View.GONE);
} else {
frameLayouthideandshow.setVisibility(View.VISIBLE);
}
}
});
getDialogEmptyTotal.setVisibility(View.GONE);
dialogSucces.setVisibility(View.GONE);
dialogFailed.setVisibility(View.GONE);
btnOk.setOnClickListener(this);
btnBack.setOnClickListener(this);
buttonSubmit.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
buttonSubmit.setVisibility(View.GONE);
}
}
});
getBtnTryAgainEmptyTotal.setOnClickListener(this);
btnTryAgain.setOnClickListener(this);
recyclerViewStudentInput = (RecyclerView) findViewById(R.id.input_recyclerview6);
recyclerViewStudentInput.setVisibility(View.VISIBLE);
for (Student s : classService.getStudentList(getIntent().getExtras().getLong("classId"))) studentList.add(s);
studentAdapter = new QuizInputAdapter(this, studentList);
recyclerViewStudentInput.setAdapter(studentAdapter);
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
recyclerViewStudentInput.setLayoutManager(layoutManager);
recyclerViewStudentInput.setItemAnimator(new DefaultItemAnimator());
String date = String.format(Locale.ENGLISH, "%02d/%02d/%d", Calendar.getInstance().get(Calendar.MONTH), Calendar.getInstance().get(Calendar.DAY_OF_MONTH) + 1, Calendar.getInstance().get(Calendar.YEAR));
textViewDate.setText(date);
} catch (Exception e) {
e.printStackTrace();
}
}
Aggregations