deano2390 / MaterialShowcaseView

A Material Design themed ShowcaseView for Android
Apache License 2.0
2.72k stars 526 forks source link

Dismiss text is not showing, can't dismiss #185

Closed c0dehunter closed 4 years ago

c0dehunter commented 4 years ago

image

public class FragmentConverter extends Fragment {
    private ListView listConverter;

    private void showTutorialIfNeeded() {
        if(!SharedPreferencesInstance.exists("converter_tutorial")) {
            ShowcaseConfig config = new ShowcaseConfig();
            config.setDelay(500); // half second between each showcase view

            MaterialShowcaseSequence sequence = new MaterialShowcaseSequence(getActivity(), "converter_tutorial");
            sequence.setConfig(config);

            sequence.addSequenceItem(listConverter,getString(R.string.click_to_select), getString(R.string.ok));
            sequence.start();

            SharedPreferencesInstance.saveBoolean("converter_tutorial", true);
        }
    }
progressify commented 4 years ago

Same error here, have you found a solution? edit: I have added this line in ShowcaseConfig object: config.renderOverNavigationBar = true

c0dehunter commented 4 years ago

@progressify thanks, that helped!

image