5

我想要一个带有自定义导航的 ActionBar,其中自定义视图看起来像标准操作栏选项卡。我知道这听起来像是在重新发明轮子,但这意味着我们可以将菜单按钮与选项卡放在同一行,如下所示。这是一个设计要求,实际上比标准的 android 行为对这个应用程序更有意义。 我希望标签看起来如何

我尝试过使用 ActionBarSherlock 中的 IcsLinearLayout,如下所示:

<IcsLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:orientation="horizontal"
          android:layout_height="50dip">
         <Button
             android:id="@+id/tab_1"
             android:layout_height="match_parent"
             android:gravity="center"
             android:layout_width="wrap_content"
             android:textStyle="bold"
             android:text="TAB_1"
             android:background="@drawable/abs__item_background_holo_light"
             />
        <Button
            android:id="@+id/tab_2"
            android:layout_height="match_parent"
            android:gravity="center"
            android:layout_width="wrap_content"
            android:textStyle="bold"
            android:text="TAB_2"
            android:background="@drawable/abs__item_background_holo_light"
             />
</IcsLinearLayout>

但这复制了 ActionButtons,我不知道如何复制 Tabs。

我想我需要:

  • 一个特殊的选项卡容器视图组(可能来自 ActionBarSherlock 库)
  • 看起来像带有 ABS 库中背景资源的选项卡的视图。
  • 一些代码表明单击视图后它保持选中状态(类似于 RadioButton)。

任何指向示例或类似解决方案的指针(即使在 ActionBarSherlock 库中)将不胜感激。

4

2 回答 2

14

//启用嵌入标签

//pre-ICS
if (actionBarSherlock instanceof ActionBarImpl) {
    enableEmbeddedTabs(actionBarSherlock);

//ICS and forward
} else if (actionBarSherlock instanceof ActionBarWrapper) {
    try {
        Field actionBarField = actionBarSherlock.getClass().getDeclaredField("mActionBar");
        actionBarField.setAccessible(true);
        enableEmbeddedTabs(actionBarField.get(actionBarSherlock));
    } catch (Exception e) {
        Log.e(TAG, "Error enabling embedded tabs", e);
    }
}

//helper method
private void enableEmbeddedTabs(Object actionBar) {
    try {
        Method setHasEmbeddedTabsMethod = actionBar.getClass().getDeclaredMethod("setHasEmbeddedTabs", boolean.class);
        setHasEmbeddedTabsMethod.setAccessible(true);
        setHasEmbeddedTabsMethod.invoke(actionBar, true);
    } catch (Exception e) {
        Log.e(TAG, "Error marking actionbar embedded", e);
    }
}

此代码完美运行。在我的应用程序中尝试过。供进一步参考 - https://groups.google.com/forum/#!topic/actionbarsherlock/hmmB1JqDeCk

于 2012-10-16T02:40:48.750 回答
6

通过使用层次结构查看器,我认为我们已经弄清楚了如何做到这一点。事实证明,这并不难。您需要 ABS 库中的 ScrollingTabContainerView,您可以向其中添加选项卡。

狭窄的操作栏上的选项卡看起来如何

public class MainActivity extends SherlockActivity implements ActionBar.TabListener {
/**
 * Called when the activity is first created.
 */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    ScrollingTabContainerView root = new ScrollingTabContainerView(this);
    ActionBar.Tab tab1 = getSupportActionBar().newTab();
    tab1.setText("TAB 1");

    tab1.setTabListener(this);

    ActionBar.Tab tab2 = getSupportActionBar().newTab();
    tab2.setText("TAB 2");
    tab2.setTabListener(this);

    root.addTab(tab1, 0, true);
    root.addTab(tab2, 1, false);

    getSupportActionBar().setCustomView(root);
    getSupportActionBar().setDisplayShowCustomEnabled(true);
    getSupportActionBar().setTitle("App Title");

}

@Override
public boolean onCreateOptionsMenu(Menu menu){
    menu.add("MENU ITEM 1");
    menu.add("MENU ITEM 2");
    return true;
}

@Override
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) {
    //To change body of implemented methods use File | Settings | File Templates.
}

@Override
public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) {
    //To change body of implemented methods use File | Settings | File Templates.
}

@Override
public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) {
    //To change body of implemented methods use File | Settings | File Templates.
}

我希望这可以帮助别人。

于 2012-10-03T07:40:00.163 回答