Package io.cobrowse

Interface CobrowseIO.Unredacted

Enclosing class:
CobrowseIO

@UiThread public static interface CobrowseIO.Unredacted
Implement this interface on your Activity subclasses to provide a list of views used in that activity that should be shown on the agents view.

You can use this interface to redact the whole UI of your application except for views that are specified in unredactedViews(). To achieve this, you need to implement CobrowseIO.UnredactionDelegate in your delegate class, and ensure that you pass the all your applications root views in CobrowseIO.UnredactionDelegate.unredactedViews(Activity).

  • Method Details

    • unredactedViews

      List<android.view.View> unredactedViews()
      List the views that should be shown on the agents view no matter what is specified in CobrowseIO.Redacted.redactedViews().
      Returns:
      A list of views to be shown on the agents view.