How to make a new line or tab in XML (eclipse/android)?

前端 未结 8 982
感情败类
感情败类 2021-01-31 13:25

So, in my strings.xml I have a very long text which I want to format somehow. How can I put a tab before the first sentence of the text? Also, what is the code for new line? Tha

8条回答
  •  醉话见心
    2021-01-31 13:40

    • Include this line in your layout xmlns:tools="http://schemas.android.com/tools"
    • Now , use \n for new line and \t for space like tab.
    • Example :

      for \n : android:text="Welcome back ! \nPlease login to your account agilanbu"

      for \t : android:text="Welcome back ! \tPlease login to your account agilanbu"

提交回复
热议问题