Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android EPG architecture design

I an planning to design a EPG (electronic program guide ) in androids .please help me in designing the EPG. Many ideas flowing through but before moving further want to finalize. I want to design EPG as in the image EPG

Will I use List fragments or table layout or different layout like relative with specifying the layout weight or fully list view (customized list view ) any help is appreciated

like image 898
Android4Fun Avatar asked Oct 25 '25 02:10

Android4Fun


2 Answers

You can check the source code of Live Channels (EPG view included) here: https://github.com/PerfsolTech/EPGView

It's based on RecyclerView so it's really efficient in terms of UX.

like image 187
Volodymyr Avatar answered Oct 26 '25 17:10

Volodymyr


Create custom ViewGroup that actually will be AdapterView. Write you own adapter interface that based on time and not on indexes. I have experience in writing epg component for android and custom components in general for android.

like image 29
alexandr.opara Avatar answered Oct 26 '25 18:10

alexandr.opara