很好的展示 View

我用这个:

https://github.com/amlcurran/ShowcaseView

导入文件后报错。这是我的错误和改进的 .jar 文件

错误说

在 Java 中



很有型



再次,风格



也有任何教程可以在我的项目中使用 Showcase View 。我找不到并且我没有从 github 项目中了解。不清楚。

最佳答案

这个库对所有人来说都很棒。这个怎么运作??我想突出显示一个工具栏选项。现在只需添加库并编写这样的代码。

java - Android Showcase View 怎么用?-LMLPHP

java - Android Showcase View 怎么用?-LMLPHP

您可以使用此代码使用多个 showCaseView

1 在我们的 Gradle.build 中添加库
implementation 'com.github.mreram:ShowCaseView:1.0.5'

简单地使用传递标题、描述文本、 View 或 View ID 和类型调用此方法

  ShowIntro("SetTheme", "Select Theme and Apply on your video", R.id.button_tool_theme, 1);

方法像这样创建
 private void ShowIntro(String title, String text, int viewId, final int type) {

    new GuideView.Builder(this)
            .setTitle(title)
            .setContentText(text)
            .setTargetView((LinearLayout)findViewById(viewId))
            .setContentTextSize(12)//optional
            .setTitleTextSize(14)//optional
            .setDismissType(GuideView.DismissType.targetView) //optional - default dismissible by TargetView
            .setGuideListener(new GuideView.GuideListener() {
                    @Override
                    public void onDismiss(View view) {
                        if (type == 1) {
                            ShowIntro("Editor", "Edit any photo from selected photos than Apply on your video", R.id.button_tool_editor, 6);
                        } else if (type == 6) {
                            ShowIntro("Duration", "Set duration between photos", R.id.button_tool_duration, 2);
                        } else if (type == 2) {
                            ShowIntro("Filter", "Add filter to video ", R.id.button_tool_effect, 4);
                        } else if (type == 4) {
                            ShowIntro("Add Song", "Add your selected song on your video ", R.id.button_tool_music, 3);
                        } else if (type == 3) {
                            ShowIntro("Overlay", "Add your selected overlay effect on your video ", R.id.button_tool_overlay, 5);
                        } else if (type == 5) {
                            SharePrefUtils.putBoolean("showcase", false);
                        }
                    }
                })
            .build()
            .show();
}

10-07 22:48