Utility to render JSON in a readable format. This also supports expand & collpase functionality.
<com.jsonrenderview.JsonRenderView
    android:id="@+id/json"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />binding.json.applyConfig(
    Config.Builder()
        .keyObjectColor(...)
        .keyFieldColor(...)
        .valueNumberColor(...)
        .valueBooleanColor(...)
        .valueStringColor(...)
        .build()
)binding.json.bind(jsonContent)Expand & Collapse JSON tree
binding.json.action.expand()
binding.json.action.collapse()