我在on create类中设置了操作栏标签。但是,我希望能够在另一个类中创建一个if语句,以查看选项卡中是否包含文本。
例如,在 onCreate 中,我有以下代码:
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.mainmenubar, menu);
return true;
}
private void addTabs(ActionBar actionBar)
{
ActionBar.Tab tab1=actionBar.newTab();
tab1.setText("All");
tab1.setTabListener(this);
actionBar.addTab(tab1);
在单独的类中,但在同一代码模块中我有:
class MyAdapter extends FragmentStatePagerAdapter
{
public MyAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int i) {
Fragment fragment=null;
if(i==0) //I would like to include the tab text does not contain "" here.
{
fragment=new FragmentA();
}