其他分享
首页 > 其他分享> > android textview 竖行显示

android textview 竖行显示

作者:互联网

android textview 竖行显示换个思维理解就是一行有多少个字,然后自适应多少行,只需要将  ems 设置为1 (一行显示1个字),layout_width="wrap_content"即可

<TextView
    android:id="@+id/action"
    android:layout_width="wrap_content" //自适应宽度,必须设置为这个
    android:layout_height="wrap_content"
    tools:text="竖行显示"   
    android:ems="1"  //一行显示多少个字  
    />

标签:显示,layout,竖行,一行,android,textview
来源: https://blog.csdn.net/t7g367/article/details/87930597