[android] <string> XML (eclipse / android)에서 새 줄이나 탭을 만드는 방법은 무엇입니까?

따라서 내 strings.xml에는 어떻게 든 서식을 지정하려는 매우 긴 텍스트가 있습니다. 텍스트의 첫 문장 앞에 탭을 삽입하려면 어떻게해야합니까? 또한 새 줄의 코드는 무엇입니까? 감사



답변

\t탭 및 \n새 줄에 추가하십시오 .


답변

사용하여 \n줄 바꿈과 \t당신이 탭을 삽입 할 경우.

<b>굵은 텍스트, <i>기울임 꼴 및 <u>밑줄이있는 텍스트 와 같은 기본 서식에 일부 XML 태그를 사용할 수도 있습니다.

더 많은 정보:

https://developer.android.com/guide/topics/resources/string-resource.html


답변

\ t를 사용하여 탭을 추가하고 \ n을 새 줄에 추가하십시오. 아래에 간단한 예가 있습니다.

<string name="list_with_tab_tag">\tbanana\torange\tblueberry\tmango</string>
<string name="sentence_with_new_line_tag">This is the first sentence\nThis is the second scentence\nThis is the third sentence</string>


답변

\n새 줄과 \t탭에 사용할 수 있습니다 . 또한 추가 공백 / 탭은 작성하는 방식으로 복사 Strings.xml되므로 원하는 곳에 몇 개의 공백을 제공하십시오.

이에 도달하는 더 좋은 방법은보기 xml에서 패딩 / 여백을 사용하고 긴 텍스트를 다른 문자열로 분할하는 것입니다. string.xml


답변

탭에 ‘\ t’추가

<string name="tab">\u0009</string>


답변

string.xml 맨 위에이 줄을 추가하십시오.

<?xml version="1.0" encoding="utf-8"?>

그리고 사용

'\n'

줄을 끊고 싶은 곳에서.

전의. <string> Hello world. \n its awesome. <string>

산출:

Hello world.
its awesome.


답변

  • 이 줄을 레이아웃에 포함 xmlns:tools="http://schemas.android.com/tools"
  • 이제 \n새 줄과 \t탭과 같은 공백에 사용하십시오.
  • 예 :

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

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