谁能帮我说说 Android 中的列表是什么类型的? (Android 中的新功能)

Somebody could help me telling what kind of list is it in Android? (new in Android)

抱歉这个问题,但我是 Android 的新人。

我想在我的应用程序中加入如下所示的列表。这是一个包含许多水平列表的列表,每个水平列表都有一个描述,例如 "Most visited attractions" 和一个按钮 "SEE ALL",单击该按钮会在另一个屏幕上显示整个列表。

我尝试在互联网上查找,但没有成功,因为我不知道它到底是什么样的列表。

干杯!

请访问这个 github 图书馆 MaterialLeanBack

在这里,您必须为要放置的按钮制作一个控件,该按钮在单击后会全屏显示。

用法

<com.github.florent37.materialleanback.MaterialLeanBack
        android:id="@+id/materialLeanBack"
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        app:mlb_background="@color/background"
        app:mlb_lineSpacing="30dp"

        app:mlb_paddingBottom="30dp"
        app:mlb_paddingLeft="30dp"
        app:mlb_paddingRight="30dp"
        app:mlb_paddingTop="40dp"

        app:mlb_titleColor="@android:color/white" />

下载

compile 'com.github.florent37:materialleanback:1.0.0@aar'

compile 'com.android.support:cardview-v7:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'
compile 'com.nineoldandroids:library:2.4.0'