android 换行
时间: 2023-06-30 07:19:24 浏览: 145
android 自动换行
3星 · 编辑精心推荐
在 Android 中实现换行可以使用两种方式:
1. 使用XML布局文件中的换行符`\n`,可以在TextView或EditText控件的text属性中添加`\n`来实现换行。例如:
```xml
<TextView
android:id="@+id/my_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="第一行\n第二行\n第三行" />
```
2. 在Java代码中使用`\n`实现换行。例如:
```java
TextView myTextView = findViewById(R.id.my_text_view);
myTextView.setText("第一行\n第二行\n第三行");
```
阅读全文