您现在使用默认的 Android 支持库(或 ABS)使用 aViewPager
和 a 进行了此操作PagerTabStrip
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.PagerTabStrip
android:id="@+id/tabStrip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"/>
</android.support.v4.view.ViewPager>
</LinearLayout>
然后创建一个Adapter
to ViewPager
that extends of FragmentStatePagerAdapter
(for example) 并覆盖该方法public CharSequence getPageTitle(int position)
以提供每个选项卡的标题。
希望能帮助到你。