如何在TabLayout中小写除首字母以外的所有字母?

时间:2019-04-07 13:38:22

标签: java android tabs android-tablayout

我想将所有字母都小写,但要将第一个字母保持大写,我想在tabLayout中实现。

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="23dp">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
            android:layout_height="match_parent"
            android:id="@+id/tabs"
            app:tabTextColor="@color/colorAccent"
            android:background="#fff">

        </android.support.design.widget.TabLayout>

    </android.support.design.widget.AppBarLayout>

</RelativeLayout>

这是我的tabLayout代码。我已经包含了以下行,但是问题是,它把所有字母都小写了。

app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"

我也曾尝试以编程方式做到这一点,即在我的片段的SectionsPagerAdapter类中,因为我在活动中是viewPager。 这是我的SectionsPagerAdapter类,

public class SectionsPagerAdapter extends FragmentStatePagerAdapter {

private final List<Fragment> mFragments = new ArrayList<>();
private final List<String> mFragmentTitleList = new ArrayList<>();

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

@Override
public Fragment getItem(int i) {
    return mFragments.get(i);
}

@Override
public int getCount() {
    return mFragments.size();
}

public void addFragment(Fragment fragment, String fragTitle) {

    mFragments.add(fragment);
    mFragmentTitleList.add(fragTitle.toLowerCase());

}

@Override
public CharSequence getPageTitle(int position) {
    return mFragmentTitleList.get(position);
}

在我的工作活动(或片段)中也要调用它,我使用了以下代码,

public void setUpViewPager() {

    SectionsPagerAdapter adapter = new SectionsPagerAdapter(getChildFragmentManager());

    adapter.addFragment(new StudentsFragment(), "Students");

    adapter.addFragment(new ProfessorsFragment(), "Professors");

    adapter.addFragment(new AlumnusFragment(), "Alumnus");

    ViewPager viewPager = view.findViewById(R.id.container);

    viewPager.setAdapter(adapter);

    TabLayout tabLayout = view.findViewById(R.id.tabs);

    tabLayout.setupWithViewPager(viewPager);


}

在这里,我将名字命名为“学生,教授,校友”(所有字母都大写)。我希望在启动应用程序时保持相同。但是问题是,当我在我的tabLayout中包括一行以小写字母时,它也将第一个字母小写。我该如何解决或克服这个问题?

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:1)

也许此代码段会有所帮助,请尝试将其应用于您的适配器类:

    public void addFragment(Fragment fragment, String fragTitle) {

    mFragments.add(fragment);
    fragTitle = fragTitle.toLowerCase()
    fragTitle = fragTitle.substring(0, 1).toUpperCase() + fragTitle.substring(1);
    mFragmentTitleList.add(fragTitle);

}