I'm trying to create something that Looks like this:
A.
I. Point 1
II. Point 2
III. Point 3
1.) Subpoint 1
2.) Subpoint 2
IV. Point 4
B.
I. Point 1
II. Point 2
III. Point 3
C.
I. Point 1
1.) Subpoint 1
2.) Subpoint 2
Only that points are indented and sub points indented twice. I tried to achieve this by using \t in Java which works almost perfectly except when the text is too long and it moves to the next line. Other users tried to solve this using SpannableString
and LeadingMarginSpan
but they only seem to work for one indentation not two or more. Oh and it also has to be DYNAMIC meaning the number of points and sub points as well as their length can differ.