I want to settext like this
String Result = "Customer Name :"+getSpace()+CustomerName+System.getProperty ("line.separator")+
    "Customer Age :"+getSpace()+CustomerAge+System.getProperty ("line.separator")+
    "Money  :"+getSpace()+CustomerMoney+System.getProperty ("line.separator");
        ExampleTextView.setText(Result );
Function Code
public String getSpace(){
 String Space="";
 for(int i=0;i<getSpaceCount();i++)
 {
  Space+=" ";
 }
}
After than i want to result Like this | <- is Layout border
|Customer Name :        Akshan Ormani To|
|Customer Age :                       19| 
|Money :                           20.0€|
 
     
    