我的应用程序中有带有 NAVIGATION_MODE_TABS 和一些实际选项卡的 ActionBar。The task is quite simple: make selected tab title bold (and returning to normal when tab loses selection). 但要完成这样的任务,就成了一个大难题。Tab 对象没有访问底层 TextView 的方法。所以我为标签标题使用了自定义视图,但是这个视图定位错误:
请帮助并告诉我:
- 如果有办法直接操作标签文本,或者
- 如何实现自定义 TextView 的默认定位?
我正在使用的代码:
在活动中->
final ActionBar actionBar = getSupportActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
ActionBar.TabListener tabListener = new ActionBar.TabListener() {
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) {
mViewPager.setCurrentItem(tab.getPosition());
TextView textView = (TextView) tab.getCustomView();
textView.setTypeface(null, Typeface.BOLD);
}
public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) {
TextView textView = (TextView) tab.getCustomView();
textView.setTypeface(null, Typeface.NORMAL);
}
public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) {
// probably ignore this event
}
};
for (int i = 0; i < 3; i++) {
TextView textView = (TextView)
getLayoutInflater().inflate(R.layout.tab_title, null);
textView.setText("Tab " + i);
actionBar.addTab(actionBar.newTab()
.setCustomView(textView)
.setTabListener(tabListener));
}
在 layout.tab_title ->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />