如何在android wearable中创建WearableRecyclerView?我知道在android devloper中获取了有关它的信息,但它仍然很小,我需要完整的教程。
答案 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一样使用它,即添加适配器等。