7

我的计划是为所有 Android 版本创建一个包含 Tabs+Swipe 的 Activity。如果我们从默认的 Android 项目中设置它,它至少支持 API 11。

Sherlock中,我们有两个项目名为:Tab Navigation,Tab Navigation(collapsed) 包括 Tabs 但不包括 Swipe。They have Issue #240 in their samples that has a bug (swipe left/right when the tabs are in collapsed mode (landscape) and the selected item does not update).

你知道解决这个问题的任何示例代码吗?

4

3 回答 3

8

您现在使用默认的 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>

然后创建一个Adapterto ViewPagerthat extends of FragmentStatePagerAdapter(for example) 并覆盖该方法public CharSequence getPageTitle(int position)以提供每个选项卡的标题。

希望能帮助到你。

于 2012-12-24T10:30:35.480 回答
5

我也碰巧有同样的情况。按照以下链接,您将获得所需的一切。

请参阅本教程 http://droidista.blogspot.com/2012/08/making-actionbarsherlock-and.html

并从这里获取演示代码 https://github.com/zmdominguez/vpi-abs-demo

于 2012-12-24T12:00:51.023 回答
2

我发现这些链接可能会对您有所帮助。

  1. 翻页器控件 - 类似于 android 主屏幕
  2. https://github.com/JakeWharton/Android-ViewPagerIndicator
于 2012-12-24T10:44:46.087 回答