在Android中,TextView默認(rèn)是支持自動(dòng)換行的。只需要將TextView的屬性android:singleLine
設(shè)置為false即可。
在XML布局文件中:
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is a long text that will automatically wrap to the next line"
android:singleLine="false"/>
在代碼中:
TextView textView = findViewById(R.id.textView);
textView.setText("This is a long text that will automatically wrap to the next line");
textView.setSingleLine(false);
這樣就可以實(shí)現(xiàn)TextView的自動(dòng)換行了。