使用MVVMCROSS在Xamarin Android中的方法标签导航



我目前正在尝试使用MVVMCross在Xamarin Android中实现TABBAR我想添加这样的标签导航:选项卡

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    <Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?android:attr/actionBarSize"
        android:background="?android:attr/colorPrimary"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        android:titleTextColor="#ffffffff" />
    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="16dp"
        local:tabGravity="center"
        local:tabMode="scrollable" 
        />
  <android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
</android.support.design.widget.AppBarLayout>

这是我用于标签导航的方法。https://github.com/rrispoli/sampletabs

实现

真的很容易

相关内容

  • 没有找到相关文章

最新更新