10

我是 ActionBarSherlock 的新手,遇到两个问题:

首先,我只是希望能够设置操作栏的标题,但是当我这样调用它时它不起作用:

final ActionBar actionBar = (ActionBar) findViewById(R.id.actionBar);
actionBar.setTitle("test title");

对应的 xml 对象如下所示:

<com.myapp.prototype.ActionBar
    android:id="@+id/actionBar2"
    android:layout_width="fill_parent"
    android:layout_height="45dip" 
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true" />

(这是仿照 github 示例:https ://github.com/johannilsson/android-actionbar/blob/master/actionbarexample/src/com/markupartist/android/actionbar/example/HomeActivity.java )。在网络上的其他地方,我看到对 getSupportActionBar() 的引用,但我不清楚如何或在哪里调用它。

其次,在另一个地方,我只想能够完全隐藏 Activity 的标题栏。我试图通过调用来做到这一点:

    actionBar.setDisplayShowTitleEnabled(false);
    actionBar.setDisplayShowHomeEnabled(false);

但我什至无法编译它。我得到的错误是:

"The method setDisplayShowTitleEnabled(boolean) is undefined for the type
 ActionBar."

在这两种情况下,我猜都涉及到 Actionbar Sherlock 覆盖问题。任何建议如何使这项工作?

非常感谢。

4

3 回答 3

40

设置ActionBar标题

setTitle("Title")

隐藏和显示ActionBar

getSupportActionBar().hide();
getSupportActionBar().show();
于 2012-05-29T22:43:49.773 回答
2

您似乎混淆了两种不同的 ActionBar 实现。ActionBarSherlock 是 Google 提供的兼容性库的扩展。ActionBarSherlock 使用的方法几乎与 Android 3.0+ 中的原生 ActionBar 相同http://actionbarsherlock.com/

提供的 Github 链接(以及您正在使用的代码)是操作栏https://github.com/johannilsson/android-actionbar的自定义实现。

我建议您使用 ActionBar sherlock 并按照此处的使用指南http://actionbarsherlock.com/usage.html

这里还有一个 ActionBarSherlock 入门视频http://www.youtube.com/watch?feature=player_embedded&v=4GJ6yY1lNNY

于 2012-05-29T22:36:35.630 回答
0

您需要导入 com.actionbarsherlock.view.Window 以便它偷偷使用该方法的长版本。

于 2014-02-27T14:39:03.750 回答