Multiple ListRows for each Header on BrowseFragment - Leanback library

后端 未结 2 1779
Happy的楠姐
Happy的楠姐 2021-02-14 10:53

I\'m getting started with Leanback support for our app. As per UI requirements I need to add multiple list rows corresponding to each header, it\'s exactly like what Youtube App

2条回答
  •  爱一瞬间的悲伤
    2021-02-14 11:37

    Is there any presenter that supports multiple list rows?

    Not that I know of. The problem is that BrowseFragment only accepts children that subclass Row. For this reason, there can only be single rows (and their respective headers) for each entry in BrowseFragment.

    I'm thinking on the lines creating a custom presenter with RowsFragment embedded in each item, correct me if my approach is wrong.

    As I just mentioned, I doubt that creating a custom presenter would help.

    The only solution I have been able to come up with so far is simply creating a custom version of BrowseFragment (by manually extending the RowsFragment and HeadersFragment classes) so that it supports any type of fragments.

    If you're interested, I wrote a series of articles on the process https://medium.com/building-for-android-tv/

    and a base project that offers the custom version of BrowseFragment https://github.com/dextorer/BuildingForAndroidTV

    I'm also considering writing a library to ease the use of this custom component.

提交回复
热议问题