use of com.lieverandiver.thesisproject.adapter.AssignmentInputAdapter in project classify-system by anverliedoit.
the class AssignmentInputActivity method init.
public void init() {
try {
editTextName = (EditText) findViewById(R.id.input_name2);
editTextTotal = (EditText) findViewById(R.id.input_total2);
textViewDate = (TextView) findViewById(R.id.input_date2);
buttonSubmit = (ToggleButton) findViewById(R.id.input_submit2);
btnBack = (Button) findViewById(input_back2);
dialogFailed = (CardView) findViewById(R.id.input_failed2);
dialogSucces = (CardView) findViewById(R.id.input_succes2);
btnOk = (Button) findViewById(input_ok2);
btnTryAgain = (Button) findViewById(input_tryagain2);
getDialogEmptyTotal = (CardView) findViewById(R.id.input_failedemp2);
getBtnTryAgainEmptyTotal = (Button) findViewById(input_tryagainemp2);
toggleButtonhideandshow = (ToggleButton) findViewById(R.id.input_hideandshow2);
frameLayouthideandshow = (FrameLayout) findViewById(R.id.input_detailts2);
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_recyclerview2);
recyclerViewStudentInput.setVisibility(View.VISIBLE);
for (Student s : classService.getStudentList(getIntent().getExtras().getLong("classId"))) studentList.add(s);
studentAdapter = new AssignmentInputAdapter(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