Search in sources :

Example 1 with ProjectInputAdapter

use of com.lieverandiver.thesisproject.adapter.ProjectInputAdapter in project classify-system by anverliedoit.

the class ProjectInputActivity method init.

public void init() {
    try {
        editTextName = (EditText) findViewById(R.id.input_name5);
        editTextTotal = (EditText) findViewById(R.id.input_total5);
        textViewDate = (TextView) findViewById(R.id.input_date5);
        buttonSubmit = (ToggleButton) findViewById(R.id.input_submit5);
        btnBack = (Button) findViewById(input_back5);
        dialogFailed = (CardView) findViewById(R.id.input_failed5);
        dialogSucces = (CardView) findViewById(R.id.input_succes5);
        btnOk = (Button) findViewById(input_ok5);
        btnTryAgain = (Button) findViewById(input_tryagain5);
        getDialogEmptyTotal = (CardView) findViewById(R.id.input_failedemp5);
        getBtnTryAgainEmptyTotal = (Button) findViewById(input_tryagainemp5);
        toggleButtonhideandshow = (ToggleButton) findViewById(R.id.input_hideandshow5);
        frameLayouthideandshow = (FrameLayout) findViewById(R.id.input_detailts5);
        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_recyclerview5);
        recyclerViewStudentInput.setVisibility(View.VISIBLE);
        for (Student s : classService.getStudentList(getIntent().getExtras().getLong("classId"))) studentList.add(s);
        studentAdapter = new ProjectInputAdapter(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();
    }
}
Also used : ProjectInputAdapter(com.lieverandiver.thesisproject.adapter.ProjectInputAdapter) Student(com.remswork.project.alice.model.Student) LinearLayoutManager(android.support.v7.widget.LinearLayoutManager) CompoundButton(android.widget.CompoundButton) DefaultItemAnimator(android.support.v7.widget.DefaultItemAnimator) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Aggregations

DefaultItemAnimator (android.support.v7.widget.DefaultItemAnimator)1 LinearLayoutManager (android.support.v7.widget.LinearLayoutManager)1 CompoundButton (android.widget.CompoundButton)1 ProjectInputAdapter (com.lieverandiver.thesisproject.adapter.ProjectInputAdapter)1 GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)1 Student (com.remswork.project.alice.model.Student)1