Android Wear BoxInsetLayout不适用于Moto 360

时间:2014-11-11 22:18:06

标签: wear-os moto-360

我正在尝试制作一个有两页的Android Wear应用。 我创建了:

  • InsetActivity
  • 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

怎么了?

0 个答案:

没有答案