4

如果应用程序具有主题 Theme.AppCompat.Light.NoActionBar 并在应用程序中使用 android.support.v7.widget.Toolbar,是否有任何方法可以使用ShowcaseView 。我在执行应用程序时低于堆栈跟踪。请建议...

java.lang.RuntimeException: insertShowcaseViewWithType cannot be used when the theme has no ActionBar
        at com.github.amlcurran.showcaseview.targets.AppCompatReflector.getHomeButton(AppCompatReflector.java:32)
        at com.github.amlcurran.showcaseview.targets.AppCompatReflector.getActionBarView(AppCompatReflector.java:20)
        at com.github.amlcurran.showcaseview.targets.ActionViewTarget.setUp(ActionViewTarget.java:22)
        at com.github.amlcurran.showcaseview.targets.ActionViewTarget.getPoint(ActionViewTarget.java:29)
        at com.github.amlcurran.showcaseview.ShowcaseView$1.run(ShowcaseView.java:149)
        at android.os.Handler.handleCallback(Handler.java:739)
        at android.os.Handler.dispatchMessage(Handler.java:95)
        at android.os.Looper.loop(Looper.java:135)
        at android.app.ActivityThread.main(ActivityThread.java:5312)
        at java.lang.reflect.Method.invoke(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:372)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:901)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:696)
4

5 回答 5

12

如果活动没有 ActionBar,您将无法制作指向菜单项的“教程步骤”(很明显为什么......您没有菜单项)。

如果您想在活动/片段内的视图中将圆圈居中,这应该适合您。

ShowcaseView.Builder res = new ShowcaseView.Builder(activity, true)
                .setTarget(target)
                .setContentTitle("title")
                .setContentText("content");

目标是:

Target target = new ViewTarget(view_id, activity)
于 2015-07-06T08:44:07.057 回答
11

我通过这段代码(在片段中)解决了我的类似问题:

        new ShowcaseView.Builder(getActivity())
    .setTarget( new ViewTarget( ((View) parentView.findViewById(R.id.link_to_register)) ) )
    .setContentTitle("ShowcaseView")
    .setContentText("This is highlighting the Home button")
    .hideOnTouchOutside()
    .build();
于 2016-03-29T22:57:07.193 回答
2

如果您想在 overflowMenu 上显示提示,那么您可以尝试使用 ShowCaseView#setTarget(Target t) 设置以下目标:

Target = new Target() {
    @Override
    public Point getPoint() {
        int[] location = new int[2];
        toolBar.getLocationInWindow(location);
        int x = location[0] + toolBar.getWidth() - toolBar.getHeight() / 2;
        int y = location[1] + toolBar.getHeight() / 2;
        return new Point(x, y);
    }
};
于 2016-06-20T09:24:14.327 回答
1

看起来 Showcase 不能很好地与 Android Studio 热部署功能配合使用(可能是因为使用了再膨胀)。

当我清理项目并重新启动(使用正确的展示构建器后)时,它工作了。

于 2016-08-15T11:45:33.903 回答
0

我得到了解决方案..... Appcompat toolber 的代码

toolbar = (Toolbar) findViewById(R.id.department_name);
    toolbar.setTitle(R.string.catagory_one);
    toolbar.setSubtitle(getText(R.string.lwebsite));
    toolbar.inflateMenu(R.menu.all_articles);// add this line catching menu items
    setSupportActionBar(toolbar);

然后使用您喜欢的目标视图库。我在这里用两个不同的库写这个。一个是

 new MaterialTapTargetPrompt.Builder(CatagoryOne_HOME.this)//library link:https://github.com/sjwall/MaterialTapTargetPrompt
            .setTarget(R.id.sync)//this is yours
            .setPrimaryText("Send your first email")
            .setSecondaryText("Tap the envelope to start composing your first email")
            .show();

    ViewTarget target = new ViewTarget(toolbar.findViewById(R.id.sync));//this is yours
    new ShowcaseView.Builder(this)
            .setContentTitle("Its My Navigation Drawer")
            .setContentText("Click here and you will get options to navigate to other sections.")
            .useDecorViewAsParent() 
            .setTarget(target)
            .build();

就是这样。快乐的编码......

于 2018-11-11T18:00:42.527 回答