如何向 DetailsS​​upportFragment 添加额外的一行?

How to add an extra line to DetailsSupportFragment?

如何向 Leanback 库中的 DetailsS​​upportFragment 添加额外的一行?

我知道如何在 DetailsOverviewRow 中添加行,但它应该在 DetailsOverviewRow 之后

在详细信息屏幕中添加额外的行。在 activity_leanback_details.xmlDetailsSupportFragment 容器 Activity 布局中添加更改:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <!-- DetailsSupportFragment container -->
    <fragment
        android:id="@+id/details_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/extra_line"
        android:layout_alignParentTop="true" />

    <TextView
        android:id="@+id/extra_line"
        android:text="Extra Line"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" />
</RelativeLayout>