3

2 つのページを持つ Android Wear アプリを作成しようとしています。私が作成しました:

  • インセット アクティビティ
  • GridViewPager
  • FragmentGridPagerAdapter
  • CardFragment から拡張された 2 つのクラス
  • BoxInsetLayout を使用する 2 つのカスタム レイアウト ファイル

レイアウト ファイルの 1 つを次に示します。

<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 を返します。

コンソールに次の 2 つのエラー メッセージが表示されます。

E/RecyclerView﹕ No adapter attached; skipping layout

どうしたの?

4

0 に答える 0