次の方法で共有


GridViewPager

このガイドでは、Android Wear 用の 2D ピッカー ナビゲーション パターンを実装する方法を示します。

正方形のディスプレイ上の GridViewPager のスクリーンショットの例

まず、Xamarin Android Wear Support NuGet パッケージをプロジェクトに追加します。

レイアウト XML は次のようになります:

<android.support.wearable.view.GridViewPager xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:keepScreenOn="true" />

認証要求の処理に使用する GridPagerAdapter (または以下のサブクラス: FragmentGridPagerAdapter をクリックすると、ユーザーが移動すると表示されるビューが提供されます。

サンプル アダプター では、RowCountGetColumnCountGetBackground、および GetFragment のオーバーライドなど、必要なメソッドを実装する方法を示します

次のようにアダプターを接続します:

pager.Adapter = new SimpleGridPagerAdapter (this, FragmentManager);