我的计划是为所有Android版本创建一个包含Tabs + Swipe的Activity。如果我们从默认的Android项目设置它,它至少支持API 11。
在Sherlock中我们有两个项目名称:选项卡导航,选项卡导航(折叠)包括选项卡但不包括滑动。 他们的样本中有问题#240有错误(当标签处于折叠模式(横向)时向左/向右滑动,并且所选项目不会更新)。
您知道解决此问题的示例代码吗?
答案 0 :(得分:8)
您现在使用默认的Android支持库(或ABS),ViewPager
和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
ViewPager
创建一个FragmentStatePagerAdapter
(例如)并覆盖方法public CharSequence getPageTitle(int position)
,为每个标签提供标题。
希望它有所帮助。
答案 1 :(得分:5)
我也碰巧遇到了同样的情况。按照以下链接,您将获得所需的一切。
参见本教程 http://droidista.blogspot.com/2012/08/making-actionbarsherlock-and.html
答案 2 :(得分:2)