Skip to content
Advertisement

Showing xml for correct view

When a user logs in to my app, they can either click the view students button or daily grading button. The view students will display a student’s image and their name. The daily grading will display the student’s image, name, and two checkboxes that says pass or fail. Now the issue I have is that the checkboxes for pass and fail are showing up in my activity_view_students.xml view when it should not be. It should only show when a user clicks daily grading. I will put images below to make it clearer

What it looks like in the activity_view_students.xml

What it looks like

What it should look like in activity_view_students.xml

What it should look like

I will paste all relevant code below.

ViewStudents.java

JavaScript

RecyclerAdapter.java

JavaScript

activity_view_students.xml

JavaScript

daily_grading.xml

JavaScript

activity_student_item.xml

JavaScript

GradingRecyclerAdapter

JavaScript

activity_grading_student_item

JavaScript

Advertisement

Answer

You can simply use different adapters create another activity_student_item.xml let’s say activity_view_student_item.xml and remove the checkboxes from that one create another adapter for that recyclerView but change

JavaScript

in the new adapter to

JavaScript

and in the ViewStudents activity set the recycler’s Adapter to that new adapter

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement