无法修复Android中的PagerTitleStrip

时间:2015-07-17 11:16:10

标签: android android-viewpager fragment

PagerTitleStrip溢出。我无法一次看到所有的标题。无法弄清楚我在这里缺少什么。我附上了截图。 PageTitleStripExample - 3 titles are not seen at the same time.

另外,我如何向这些标签添加素材UI主题。需要哪个库以及如何为选项卡或整个应用程序应用主题

我的适配器代码

public class MyAdapter extends FragmentPagerAdapter
{
int totalFragments = 3;

public MyAdapter(FragmentManager fm) {
    super(fm);
}

@Override
public Fragment getItem(int position) {
    return MyFragment.newInstance(position);
}

@Override
public int getCount() {
    return totalFragments;
}

@Override
public CharSequence getPageTitle(int position) {
    switch (position) {
    case 0:
        return "Tab One";
    case 1:
        return "Tab Two";
    case 2:
        return "Tab Three";
}

return null;
}
}

布局文件:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:orientation="vertical" >

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.3"
    android:orientation="vertical" >
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.7"
    android:orientation="vertical" >

    <android.support.v4.view.ViewPager
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <android.support.v4.view.PagerTitleStrip
            android:id="@+id/pager_title_strip" 
            android:scrollbarSize="200dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:background="#33b5e5"
            android:paddingBottom="4dp"
            android:paddingTop="4dp"
            android:textColor="#fff" />

    </android.support.v4.view.ViewPager>
 </LinearLayout>

 </LinearLayout>

1 个答案:

答案 0 :(得分:0)

首先,在您使用fill_parent的位置,将其替换为match_parent,因为不推荐使用填充。

其次,ViewPager尺寸的常用设置为

    android:layout_width="match_parent"
    android:layout_height="0px"

可能

    android:layout_weight="1"

在此之后,对于PagerTitleStrip,请尝试

android:layout_width="wrap_content"

第三,设计选项卡式竞争的主要方式是TabLayout,Google有一些教程和示例。