AndroidTreeView
AndroidTreeView copied to clipboard
Default separator
is there any default separator between elements ?
There is no default separator, but you specify one in your layout and make it default
How? I added this and it is only showing up for some of the items;
Style XML;
<style name="TreeNodeStyleDivided">
<item name="android:showDividers">middle</item>
<item name="android:divider">@android:drawable/divider_horizontal_bright</item>
</style>
CustomView class;
@Override
public int getContainerStyle() {
return R.style.TreeNodeStyleDivided;
}