gpt4 book ai didi

android - 如何始终在 Android 中的 ActionBar 下方显示 ActionBar 选项卡

转载 作者:可可西里 更新时间:2023-11-01 19:05:33 27 4
gpt4 key购买 nike

我一直在寻找是否有任何关于如何始终在 ActionBar 下方显示 ActionBar 选项卡的信息,即使当手机横向时也是如此。我知道它会根据屏幕上是否有足够的空间来自动将选项卡放置在 ActionBar 中,但我希望它们始终固定在 ActionBar 下方,即使在横向模式下也是如此。我发现了一个没有明确答案的类似问题:How to display tabs below action bar .我也知道很多谷歌应用程序,例如; Google Play、Google Music 等实现了这种设计模式,因此作为一种设计模式显然是可以实现和接受的。

我目前正在使用 ActionBarSherlock 库来创建我的滑动标签导航,如果有人知道如何自己做这件事,我将不胜感激。提前致谢。

这是我的 Activity 代码:

@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);

viewPager = new ViewPager(this);
viewPager.setId(R.id.pager);
setContentView(viewPager);

tabsAdapter = new TabsAdapter(this, viewPager); // Declares the tabs adapter class with the view pager view

actionBarTabs = getSupportActionBar();
actionBarTabs.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
actionBarTabs.setCustomView(spinnerView);
actionBarTabs.setDisplayShowCustomEnabled(true);

/* Adds fragments to the tabs adapter */
tabsAdapter.addTab(actionBarTabs.newTab().setText("FRAG1"), Fragment_1.class, null);
tabsAdapter.addTab(actionBarTabs.newTab().setText("FRAG2"), Fragment_2.class, null);
tabsAdapter.addTab(actionBarTabs.newTab().setText("FRAG3"), Fragment_3.class, null);
}

这是我的 TabsAdapter 代码:

public class TabsAdapter extends FragmentPagerAdapter implements ActionBar.TabListener , ViewPager.OnPageChangeListener 
{
private final Context context;
private final ActionBar actionBar;
private final ViewPager viewPager;
private final ArrayList<TabInfo> tabsList = new ArrayList<TabInfo>();

/**
* TabInfo class
*
* Static class containing the tab information.
*
* @since 1.0
*/
static final class TabInfo
{
private final Class<?> clss;
private final Bundle args;

TabInfo(Class<?> _class, Bundle _args)
{
clss = _class;
args = _args;
}
}

/**
* Tabs adapter overload constructor.
*
* @param fragmentActivity sets the fragment activity to the adapter.
* @param refViewPager sets the viewPager variable.
* @see
* @since 1.0
*/
public TabsAdapter(SherlockFragmentActivity fragmentActivity, ViewPager refViewPager)
{
super(fragmentActivity.getSupportFragmentManager());
context = fragmentActivity;
actionBar = fragmentActivity.getSupportActionBar();
viewPager = refViewPager;
viewPager.setAdapter(this);
viewPager.setOnPageChangeListener(this);
}

/**
* Add tab method to add a tab to the list.
*
* @param tab sets the tab to be added to the tabs in the action bar.
* @param clss sets the class variable in the TabInfo class.
* @param args sets the bundle variable in the TabInfo class.
* @see
* @since 1.0
*/
public void addTab(ActionBar.Tab tab, Class<?> clss, Bundle args)
{
TabInfo info = new TabInfo(clss, args);
tab.setTag(info);
tab.setTabListener(this);
tabsList.add(info);
actionBar.addTab(tab);
notifyDataSetChanged();
}

@Override
public void onPageScrollStateChanged(int state)
{

}

@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels)
{

}

@Override
public void onPageSelected(int position)
{
actionBar.setSelectedNavigationItem(position);
}

@Override
public void onTabSelected(Tab tab, FragmentTransaction ft)
{
viewPager.setCurrentItem(tab.getPosition());
Object tag = tab.getTag();
for (int i = 0; i<tabsList.size(); i++)
{
if (tabsList.get(i) == tag)
{
viewPager.setCurrentItem(i);
}
}

}

@Override
public void onTabUnselected(Tab tab, FragmentTransaction ft)
{

}

@Override
public void onTabReselected(Tab tab, FragmentTransaction ft)
{

}

@Override
public Fragment getItem(int position)
{
TabInfo info = tabsList.get(position);
return Fragment.instantiate(context, info.clss.getName(), info.args);
}

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

最佳答案

我在横向模式下遇到了同样的问题,我在这里找到了解决方案:http://andreimihu.com/blog/2013/10/17/android-always-embed-tabs-in-actionbar/

基本上,作者希望选项卡位于操作栏内部,而你我希望它位于外部。因此,只需将方法调用更改为 false(来自上述链接的代码,但稍作修改):

// This is where the magic happens!
public void forceTabs() {
try {
final ActionBar actionBar = getActionBar();
final Method setHasEmbeddedTabsMethod = actionBar.getClass()
.getDeclaredMethod("setHasEmbeddedTabs", boolean.class);
setHasEmbeddedTabsMethod.setAccessible(true);
setHasEmbeddedTabsMethod.invoke(actionBar, false);
}
catch(final Exception e) {
// Handle issues as needed: log, warn user, fallback etc
// This error is safe to ignore, standard tabs will appear.
}
}

关于android - 如何始终在 Android 中的 ActionBar 下方显示 ActionBar 选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21848822/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com