How To Use ShowCaseView V5 Builder With Fragments?
I found examples for the legacy version, but not for the new builder pattern. Does anyone know how to do this?
Solution 1:
The Builder constructor only needs an activity public Builder(Activity activity)
so:
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment, container, false);
showcaseView = new ShowcaseView.Builder(getActivity())
.setTarget(new ViewTarget(view.findViewById(R.id.textView)))
.setOnClickListener(listener)
.build();
....
Post a Comment for "How To Use ShowCaseView V5 Builder With Fragments?"