代码之家  ›  专栏  ›  技术社区  ›  UMAR-MOBITSOLUTIONS

如何在Android文本视图中将文本包装到下一行?

  •  25
  • UMAR-MOBITSOLUTIONS  · 技术社区  · 14 年前

    我用的是 TextView 要在其中显示某些数据:

    <TextView android:id="@+id/notificationText" 
            android:layout_height="wrap_content"
            android:layout_width="fill_parent"
            android:textSize="18sp"
            android:inputType="textMultiLine"
            android:maxLines="2"
            android:layout_paddingRight="20dip"
            android:textColor="#ffffff"/>
    

    4 回复  |  直到 7 年前
        1
  •  37
  •   Paresh Mayani jeet    13 年前

    你必须设定 android:scrollHorizontally="false" 在您的xml中。

        2
  •  9
  •   remykarem yunus    8 年前

    你也可以试试

    android:inputType="textMultiLine"
    

    在您的XML中。这对我有效。

        3
  •  8
  •   Community Dai    7 年前

    android:layout_width="0dp"
    

    这里有一个原始的链接 answer .

        4
  •  3
  •   IntelliJ Amiya    8 年前

    你需要设置

     android:minLines="2"
    
    推荐文章