Hide Views

A developer can either pass multiple views at once or pass each view separately to utilize the view-hiding functionality. Here’s how to hide views directly from the source code:


// pass multiple views at once
ArrayList<View> views = new ArrayList<>();
views.add(view1);
views.add(view2);
// .. and so on
VWOInsights.hideViews(views);


// or simply pass each view separately
VWOInsights.hideView(view1)
VWOInsights.hideView(view2)
// .. and so on
// pass multiple views at once
val views = ArrayList<View>()
views.add(view1)
views.add(view2)
// .. and so on
VWOInsights.hideViews(views)


// or simply pass each view separately
VWOInsights.hideView(view1)
VWOInsights.hideView(view2)
// .. and so on