如何创建WearableRecyclerView

时间:2017-07-05 09:33:15

标签: android-recyclerview wearables

如何在android wearable中创建WearableRecyclerView?我知道在android devloper中获取了有关它的信息,但它仍然很小,我需要完整的教程。

1 个答案:

答案 0 :(得分:0)

您应该在主xml布局中添加它:

  <android.support.wear.widget.WearableRecyclerView
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:tools="http://schemas.android.com/tools"
     android:id="@+id/recycler_launcher_view"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:scrollbars="vertical" />

并像常规的RecyclerView一样使用它,即添加适配器等。