5

可能吗?

我可以使用片段,也可以将选项卡放在底部,但不能使用 ActionBar Sherlock。有人知道怎么做吗?

我正在使用这样的东西来使用标签(它们在底部):

tHost = (TabHost) findViewById(R.id.tabhost2);

    tHost.setup();

    tM = new TabManager(this, tHost, android.R.id.tabcontent);

    tM.addTab(tHost.newTabSpec("tabCREATE").setIndicator("Criar"),
            Criar.CountingFragment.class, null);

    tM.addTab(tHost.newTabSpec("tabCREATE2").setIndicator("Criar2"),
            Criar.CountingFragment.class, null);

如何将其更改为 ActionBar 选项卡?

我通常将它用于操作栏:

getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

    for (int i = 1; i <= 3; i++) {
        ActionBar.Tab tab = getSupportActionBar().newTab();
        if (i == 1) {
            tab.setText("a");
        }
        else if(i == 2)
            tab.setText("b");
        else if (i == 3)
            tab.setText("c");
        tab.setTabListener(this);
        getSupportActionBar().addTab(tab);

这很好,但我真的需要把它放在底部。是否可以在第二种方法上设置 Tabhost?如何?我相信它会解决我所有的问题。

4

2 回答 2

0

在您的清单中添加此代码android:uiOptions="splitActionBarWhenNarrow"

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          android:uiOptions="splitActionBarWhenNarrow"
          android:versionCode="431"
          android:versionName="4.3.1"
          package="com.actionbarsherlock.sample.demos">

并在您的活动中再次添加此代码

<activity android:label="@string/activity_name" 
          android:uiOptions="splitActionBarWhenNarrow"
          android:name=".SampleList" android:theme="@style/Theme.Sherlock">

我尝试过样品,它适用于它

于 2013-05-03T12:32:00.950 回答
0

我认为你不能用 ActionBar 做到这一点。android:uiOptions="splitActionBarWhenNarrow"只是在屏幕底部为 ActionBar 添加了额外的空间,但它只用于 MenuItems 而不是选项卡。ActionBar 设计指南总是在顶部有标签。看看http://www.androiduipatterns.com/2011/07/tabs-top-or-bottom.html哪里是一个很好的讨论标签应该放在哪里。

于 2013-05-03T22:04:01.497 回答