我想知道导航标签是在操作栏内还是在操作栏下方。在第一种(无效的)方法中,我假设动作栏位于横向的动作栏内,而在纵向的下方。这是测试活动代码:
public class TabTestActivity extends FragmentActivity implements
ActionBar.TabListener {
SectionsPagerAdapter mSectionsPagerAdapter;
ViewPager mViewPager;
private AlertDialog.Builder dialogBuilder;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_tab_test);
dialogBuilder = new AlertDialog.Builder(this);
dialogBuilder.setTitle("Tabs inside or below action bar?");
dialogBuilder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
final ActionBar actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
mSectionsPagerAdapter = new SectionsPagerAdapter(
getSupportFragmentManager());
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(mSectionsPagerAdapter);
mViewPager
.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(int position) {
actionBar.setSelectedNavigationItem(position);
}
});
for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) {
actionBar.addTab(actionBar.newTab()
.setText(mSectionsPagerAdapter.getPageTitle(i))
.setTabListener(this));
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.tab_test, menu);
return true;
}
@Override
public void onTabSelected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
mViewPager.setCurrentItem(tab.getPosition());
AlertDialog notifyTabsLocationDialog = dialogBuilder.create();
// First approach: assume that tabs are inside action bar in landscape
// and below action bar in landscape, but they are always inside action
// bar for my tablet
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
notifyTabsLocationDialog.setMessage("Tabs below action bar");
} else {
notifyTabsLocationDialog.setMessage("Tabs inside action bar");
}
notifyTabsLocationDialog.show();
}
@Override
public void onTabUnselected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
}
@Override
public void onTabReselected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
}
public class SectionsPagerAdapter extends FragmentPagerAdapter {
public SectionsPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int position) {
Fragment fragment = new DummySectionFragment();
Bundle args = new Bundle();
args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, position + 1);
fragment.setArguments(args);
return fragment;
}
@Override
public int getCount() {
return 3;
}
@Override
public CharSequence getPageTitle(int position) {
Locale l = Locale.getDefault();
switch (position) {
case 0:
return getString(R.string.title_section1).toUpperCase(l);
case 1:
return getString(R.string.title_section2).toUpperCase(l);
case 2:
return getString(R.string.title_section3).toUpperCase(l);
}
return null;
}
}
public static class DummySectionFragment extends Fragment {
public static final String ARG_SECTION_NUMBER = "section_number";
public DummySectionFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_tab_test_dummy,
container, false);
TextView dummyTextView = (TextView) rootView
.findViewById(R.id.section_label);
dummyTextView.setText(Integer.toString(getArguments().getInt(
ARG_SECTION_NUMBER)));
return rootView;
}
}
}
答案 0 :(得分:1)
来自ActionBar指南:Adding Navigation Tabs
ActionBar提供的标签非常理想,因为它们适应不同的屏幕尺寸。例如,当屏幕足够宽时,标签会出现在操作栏旁边的动作按钮上(例如在平板电脑上,如图7所示),而在狭窄的屏幕上,它们会出现在一个单独的栏中(称为“叠加动作条”,如图8所示。在某些情况下,Android系统会将您的标签项显示为下拉列表,以确保最适合操作栏。
是的,你的假设很安静。但该参数不是纵向或横向,但是有足够的空间或没有足够的空间将标签与操作栏合并。
答案 1 :(得分:0)
我找到了一个使用反射来访问mHasEmbeddedTabs
的布尔字段ActionBar
的工作流:
Class<?> actionBarClass = getActionBar().getClass();
Field mHasEmbeddedTabs = actionBarClass.getDeclaredField("mHasEmbeddedTabs");
mHasEmbeddedTabs.setAccessible(true);
if (mHasEmbeddedTabs.getBoolean(getActionBar())) {
notifyTabsLocationDialog.setMessage("Tabs inside action bar");
} else {
notifyTabsLocationDialog.setMessage("Tabs below action bar");
}