如何在android textview中为nextline提供一些空格?

时间:2016-11-17 10:31:30

标签: android textview text-formatting

在我的应用程序中,我有一个测验页面..

它有问题和答案..每个问题都有问题编号..

示例问题:

  
      
  1. 以下哪一项可以制造合适的惰性电极
  2.         

    硫酸钠溶液的电解?

但是我想为下一行提供一些空间来正确对齐..

  
      
  1. 以下哪一项可以制造合适的惰性电极

         

    硫酸钠溶液的电解?

  2.   

目前,我在linearlayout中使用了两个textview(一个用于另一个问题)。

我的问题:

可以使用相同的textview进行此对齐吗?

3 个答案:

答案 0 :(得分:1)

您可以尝试android:gravity="center"。这可能看起来更好。 在应用它时,文本看起来像

  Q1: This will be the line of your question and 
           this will be the second line.

答案 1 :(得分:0)

你可以使用两个文本视图,一个用于问题的编号,另一个用于问题和答案,只需用“\ n”分隔它们 或者在答案前添加带“\ t”的标签空间,两者都应该有效, 好运。

答案 2 :(得分:0)

你可以尝试'\ t'它创建空间,但在android文本中根据设备宽度对齐。 例如:

 <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="1.Which one of the following would make a
suitable inert electrode in \t \t \t the electrolysis of sodium sulfate solution?"/>