我试图了解如何使用材料设计在我的应用程序的自定义“工具栏”上设置滑动选项卡。据我了解,我需要一个“ViewPage”,这是否意味着我需要创建一个“ViewPager”并设置它的“Adapter”?我想这会用相关数据填充我的片段视图。有人可以帮助解释如何去做吗?
我只打算使用两个选项卡。
到目前为止,我有我从https://www.youtube.com/watch?v=tRg_eDfQ8fk获得的 xml ,它看起来像这样:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/activity_main"
tools:context=".MainActivity">
<include layout="@layout/tool_bar"/>
<com.example.android.common.view.slidingTabLayout
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<android.support.v4.view.ViewPager
android:id="@+id/viewpages"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1"
android:background="@android:color/holo_blue_light"/>
任何帮助表示赞赏。