我正在使用库添加滑动标签https://github.com/jpardogo/PagerSlidingTabStrip,但我遇到Adapter
的问题。
下面你看TestAdapter
我不知道如何实现它。
// Initialize the ViewPager and set an adapter
ViewPager pager = (ViewPager) findViewById(R.id.pager);
pager.setAdapter(new TestAdapter(getSupportFragmentManager()));
// Bind the tabs to the ViewPager
PagerSlidingTabStrip tabs = (PagerSlidingTabStrip) findViewById(R.id.tabs);
tabs.setViewPager(pager);
我在MainActivity中工作,我已添加到xml
<com.astuetz.PagerSlidingTabStrip
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary" />
显然我现在需要构建一个Adapter,所以我查看了这些示例并试图实现https://github.com/jpardogo/PagerSlidingTabStrip/blob/master/sample/src/com/astuetz/viewpager/extensions/sample/SuperAwesomeCardFragment.java
我不确定那是不是我需要的东西而且它不是适配器,所以如何为这种情况创建一个简单的适配器?