android-多行Textview

我有一个TextView,文本太长而不能放在一行中,如何使它成为多行TextView?我添加了android:singleline =“ false”属性,但是它不起作用.

<TextView
    android:text="some long text"
    android:singleline="false"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"        
/>

解决方法:

用这个

<TextView
        android:id="@+id/yourTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:singleLine="false"
        android:scrollHorizontally="false"
        android:scrollbars="vertical" />
上一篇:Android TextView文本未在版本2.3.3的RelativeLayout中包装


下一篇:Android Studio 屏幕方向以及UI界面状态的保存