[Solved] How to format single textview like below in android without using \n or html format?
You can do it programmatically using this function val text = “This is my first text view this is my second textview this is my third textview” textView.text = proxyWifi.textFormation(text) copy/paste this code do your project 🙂 public String textFormation(String text){ String result = “”; String[] sentenceWords = text.split(” “); List<String> newSentenceWords = new ArrayList<>(); … Read more