我使用过this库,其标题文字以大写字母显示我已经提到
但没有得到正确的输出。
<style name="AppTheme" parent="@style/Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@color/accent</item>
<item name="android:textColorPrimary">@color/text_color</item>
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
<item name="android:actionBarTabTextStyle">@style/tab</item>
<item name="actionBarTabTextStyle">@style/tab</item>
<item name="android:windowBackground">@color/window_background</item>
<item name="colorControlNormal">@color/accent</item>
<item name="colorControlActivated">@color/secondary_text</item>
<item name="colorControlHighlight">@color/secondary_text</item>
<item name="android:homeAsUpIndicator">@drawable/ic_menu</item>
</style>
和
<style name="tab" parent="@style/Widget.AppCompat.Light.ActionBar.TabText">
<item name="android:textAllCaps">false</item>
</style>
fragment.java:
tabHost = (MaterialTabHost) v.findViewById(R.id.tabHost);
adapter = new TabsPagerAdapter(getChildFragmentManager(), entity);
pager = (ViewPager) v.findViewById(R.id.pager_entitiy_detail);
pager.setOffscreenPageLimit(adapter.getCount());
pager.setAdapter(adapter);
adapter.notifyDataSetChanged();
pager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(int position) {
tabHost.setSelectedNavigationItem(position);
Log.e("DashDetail", "");
}
});
// insert all tabs from pagerAdapter data
for (int i = 0; i < adapter.getCount(); i++) {
tabHost.addTab(
tabHost.newTab()
.setText(adapter.getPageTitle(i))
.setTabListener(this)
);
}
上面的代码用于标签主机和适配器设置文本,但未获得小写文本。
答案 0 :(得分:1)
谢谢,我已经完成了上面显示的答案建议,但仍然没有工作,所以我通过查看代码并对其进行分析,对库进行了更改。我发现有提到.toUpperCase(),我从那里删除,它的工作原理。
答案 1 :(得分:0)
在添加for
loop
tabs
中尝试此操作
试试这个
TextView tv = (TextView) tabHost.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
tv.setAllCaps(false);
像这样: -
for (int i = 0; i < adapter.getCount(); i++) {
tabHost.addTab(
tabHost.newTab()
.setText(adapter.getPageTitle(i))
.setTabListener(this)
TextView tv = (TextView) tabHost.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
tv.setAllCaps(false);
);
或者您可以在PagerAdapter
@Override
public CharSequence getPageTitle(int position) {
Locale l = Locale.getDefault();
switch (position) {
case 0:
return "ONE".toLowerCase();
}
return null;
}
我希望它可以提供帮助。