2

我找到了很棒的 android 库“ShowcaseView”来生成一个“教程”视图,就像在 Android 4.0 中一样。( https://github.com/Espiandev/ShowcaseViewhttp://espiandev.github.io/ShowcaseView/ )

但我不知道如何将它与我的操作栏中的图标一起使用(我正在使用 ActionBarSherlock)。

它应该与操作栏和 ActionBarSherlock 兼容,但我无法访问 id。

使用左上角的操作栏图标,它就像魅力一样......

scv = ShowcaseView.insertShowcaseView(android.R.id.home, this, "Hello", "My text", scvo);

当我想访问操作栏中的图标时,即使使用 dev-branch,也不会显示任何展示视图。

有人对这个图书馆有什么想法或经验吗?

4

1 回答 1

2

为了展示 ActionBar 图标(也称为 Action Items),您需要使用该insertShowcaseViewWithType(ITEM_ACTION_ITEM, ...)方法。

于 2013-05-15T23:55:09.270 回答