Skip to main content
Notice removed Draw attention by CommunityBot
Bounty Ended with Muthu's answer chosen by CommunityBot
added 19 characters in body
Source Link
Reaz Masud
  • 24.3k
  • 15
  • 83
  • 102

I have two different name class with different names, but with same properties or fields and want to display one same single recyclerviewRecyclerView.

Here iI have worldmatch and world hashaving same field lkefields like matchTimematchTime, startTimestartTime and endTimeendTime. I have created pojo class using jsontopojo plugin.

Here is main things, I wannawant to display worldmatch in position o0 and rest of other position world based on club, you. You can see more details in picture.

I have two different name class but with same properties or fields and want to display one same single recyclerview.

Here i have worldmatch and world has same field lke matchTime, startTime and endTime. I have created pojo class using jsontopojo plugin.

Here is main things, I wanna display worldmatch in position o and rest of other position world based on club, you can see more details in picture.

I have two different class with different names, but with same properties or fields and want to display one same single RecyclerView.

Here I have worldmatch and world having same fields like matchTime, startTime and endTime. I have created pojo class using jsontopojo plugin.

Here is main things, I want to display worldmatch in position 0 and rest of other position world based on club. You can see more details in picture.

Notice added Draw attention by Horrorgoogle
Bounty Started worth 100 reputation by Horrorgoogle
improving format
Source Link
Horrorgoogle
  • 7.9k
  • 11
  • 51
  • 81

Here i have worldmatch and world has same field lke matchTime, startTime and endTime. I have created pojo class using jsontopojo plugin plugin.

Here is main things, I wanna display worldmatch in position o and rest of other position world based on club, you canseecan see more details in picture.

Populated the Outer Recyclerview position 0, worldmatch data and it reflect all the others, how todo i pass the populated both worldmatch and world data in same recyclerview and how to filter out all the tab.

Here i have worldmatch and world has same field lke matchTime, startTime and endTime. I have created pojo class using jsontopojo plugin.

Here is main things, I wanna display worldmatch in position o and rest of other position world based on club, you cansee more details in picture.

Populated the Outer Recyclerview position 0, worldmatch data and it reflect all the others, how to i pass the populated both worldmatch and world data in same recyclerview and how to filter out all the tab.

Here i have worldmatch and world has same field lke matchTime, startTime and endTime. I have created pojo class using jsontopojo plugin.

Here is main things, I wanna display worldmatch in position o and rest of other position world based on club, you can see more details in picture.

Populated the Outer Recyclerview position 0, worldmatch data and it reflect all the others, how do i pass the populated both worldmatch and world data in same recyclerview and how to filter out all the tab.

Source Link
Horrorgoogle
  • 7.9k
  • 11
  • 51
  • 81

How to populate different object with same fields or properties in same recyclerview in android

I am going to develop soccer app, and having following json response.(link)

I have two different name class but with same properties or fields and want to display one same single recyclerview.

Here i have worldmatch and world has same field lke matchTime, startTime and endTime. I have created pojo class using jsontopojo plugin.

Here is main things, I wanna display worldmatch in position o and rest of other position world based on club, you cansee more details in picture.

enter image description here

enter image description here

This has to be first tab(world) and similarly to other tab like Europe , Asia with respective similar pattern.

Tab1(World)

---------------position 0 (All match)------------------ | | 930 1100 1130 and so on ( horizontal recyclerview) | ------------------------------------------- ---------------position 1(Barcelona)------------------ | | 1130 1230 1330 1430 and so on ( horizontal recyclerview) | ------------------------------------------- ---------------position 2(Chelsea)------------------ | | 1300 1400 1500 and so on ( horizontal recyclerview) | ------------------------------------------- . . . so on (vertical recyclerview) 

Details explanation picture view:

enter image description here

I have two Recyclerview Adapter, first one is display clubname and pass the respective data to other recycler view which gonna display horizontal view with respetive matchTime.

Populated the Outer Recyclerview position 0, worldmatch data and it reflect all the others, how to i pass the populated both worldmatch and world data in same recyclerview and how to filter out all the tab.

Display matchTime field only from WorldMatch list in position 0 and World list in below 0.(horizontal recyclerview)

Any one have any idea, which is really helpful for me and highly appreciate any idea behind this. Thanks in advance.