Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Google Play 电影应用上,当您关注细节片段时,它会在底部留出一些空间,以便您可以看到其下方的行。使用 LeanBack 库时,没有这个空间,细节片段占据了整个屏幕。我们如何让它表现得像在 Google Play 电影应用中一样?
通过将 Leanback 支持库中的以下维度添加到您的 res/values/dimens.xml 文件中来覆盖它:
<dimen name="lb_details_v2_card_height">470dp</dimen>
您可以设置卡片的高度。默认情况下,它是 540dp,填充显示器的高度(例如,1280 x 720 像素,TVDPI (1.33x) = 540dp 高度)。