由于我们是Android TV开发的新手,因此我们愿意设计屏幕,如下面的屏幕截图所示。
经过对Leanback库的某种研究,我们知道应该使用BrowseFragment来达到预期的结果。
现在的问题是,当BrowseFragment从屏幕左上角显示“行”时,如何在顶部设计结合文本和程序海报的预览部分。
我们需要使用自定义功能还是只使用Leanback库Fragment / Class / Activity中的任何一个?See screenshot here
答案 0 :(得分:0)
我建议将BrowseFragment作为子片段包装到包含所需信息(TextView,ImageView或其他)的片段中。因为大多数代码/资源都是私有的或受保护的,所以很难更改BrowseFrament的UI行为。
我假设您有一个RootFragment,其中包含两个子片段,分别是HeaderFragment和ContentFragment。
RootFragment
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="0dp"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp">
<fragment
android:id="@+id/headersView"
android:name="yourpackagename.HeadersFragment"
android:layout_width="120dp"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
<fragment
android:id="@+id/contentFragment"
android:name="yourpackagename.ContentFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/headersView"
app:layout_constraintTop_toTopOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
HeaderFragment的布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.leanback.widget.VerticalGridView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:lb="http://schemas.android.com/tools"
android:id="@+id/headersView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
lb:numberOfRow="1" />
对于ContentFragment,您只需扩展androidx.leanback.app.RowsSupportFragment()即可加载数据。因此,您可以相应地更改所需的任何UI。