I am using AndroidTreeView to show a hierarchy of items. First level of treeview is not being displayed with padding. the tree view like hierarchy is showing up from second level to all other levels. Bug explained in this video at https://www.youtube.com/watch?v=_9XjgVCqIOg&t=146
<com.github.johnkil.print.PrintView
android:layout_alignParentLeft="true"
android:id="@+id/arrow_icon"
arrowView = (PrintView) view.findViewById(R.id.arrow_icon);
arrowView.setPadding(20,10,10,10);
if (node.isLeaf()) {
arrowView.setVisibility(View.INVISIBLE);
}