Android Textview setText内部布局

时间:2017-04-25 19:08:17

标签: android android-layout textview

我想像这样设置文字

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 );

功能代码

public String getSpace(){

 String Space="";
 for(int i=0;i<getSpaceCount();i++)
 {
  Space+=" ";
 }

}

之后我想结果像这样 | &lt; - 是布局边框

|Customer Name :        Akshan Ormani To|
|Customer Age :                       19| 
|Money :                           20.0€|

1 个答案:

答案 0 :(得分:0)

我猜你可以使用AlignmentSpan.Standard。我不确定,我自己也没试过。

See here for an example