FancyShowCaseView icon indicating copy to clipboard operation
FancyShowCaseView copied to clipboard

Set tiltle function does not work with custom view

Open Ashmeeto4s opened this issue 2 years ago • 0 comments

Used FancyShowCaseView version 1.3.9

if we provide custom view then title does not show -

val fancyShowCaseView1 = FancyShowCaseView.Builder(this) .title("First Queue Item") .focusOn(btn_queue_1) .customView(R.layout.layout_my_custom_view, object : OnViewInflateListener { override fun onViewInflated(view: View) { view.findViewById<View>(R.id.btn_action_1).setOnClickListener(mClickListener) } }) .closeOnTouch(false) .dismissListener(dismissListener) .build()

Ashmeeto4s avatar May 09 '22 12:05 Ashmeeto4s