我正在尝试制作一个有两个页面的 Android Wear 应用程序。我建立:
- 插入活动
- GridViewPager
- FragmentGridPagerAdapter
- 从 CardFragment 扩展的两个类
- 两个使用 BoxInsetLayout 的自定义布局文件
其中一个布局文件如下:
<android.support.wearable.view.BoxInsetLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/history_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background">
<FrameLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_box="all">
<android.support.wearable.view.WearableListView
android:id="@+id/history_list"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.wearable.view.WearableListView>
</FrameLayout>
</android.support.wearable.view.BoxInsetLayout>
InsetActivity.isRound() 返回 true,但 BoxInsetLayout.isRound() 返回 false。
控制台中显示两条错误消息:
E/RecyclerView﹕ No adapter attached; skipping layout
怎么了?