Yafeng

Results 45 comments of Yafeng

I'm still working on other parts. This is just a small part. I did some simple measurements and below are my data. Before the change, it takes about 350ms to...

In the next step, I plan to use constraint layout to reduce layout nesting, and use View+Drawable to replace the placeholder CardView, which should also help.

You can set the reuse pool of these recyclerviews to be the same. Going a step further, you can even use recyclerview nested recyclerview to implement the main page (of...

But let's still pick up some cigarette butts and do small optimizations like splitting the home page state, which I think are good for maintaining the code and are not...

I think the current approach is acceptable if you don't want nesting to optimize performance. ViewPager2 itself is a RecyclerView, sharing the reuse pool will help, and [RecyclerView#setHasFixedSize](https://developer.android.com/reference/androidx/recyclerview/widget/RecyclerView#setHasFixedSize(boolean)) will also...

If this is the case, maybe we should implement the TV interface and the mobile interface separately, saving the need to deal with the bad glue logic. The pseudo code...

I adjusted the judgment to move the wild card to the end.

I think adding an autoplay switch would be a better option, and I’ll try to work on that.

I totally agree with your point of view. I once submitted a PR to remove the navigation bar, which was rejected by the author, but I still hope that the...