Android Logcat formatted data in a table format.
-
Add it in your root build.gradle at the end of repositories:
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
-
add dependences
dependencies { implementation 'com.github.Pinned:ATextUtils:1.0.0' }
-
add the logic in the code
LogTable logTable = new LogTable(); logTable.headers("A", "B", "C", "D", "E"); logTable.rows("1", "2", "3", "4.3879146986541").end() .rows("1", "2.89132748", "3.43124", "4.3879146986541").end() .rows("1", "2", "3.84207187").end() .rows("1.1", "2", "3", "4.3879146986541").end(); logTable.log();