在Android按钮的字符串文本中添加换行符"\n"可以通过以下几种方式实现:
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Line 1\nLine 2" />
Button myButton = findViewById(R.id.myButton);
myButton.setText("Line 1\nLine 2");
在strings.xml文件中添加以下内容:
<string name="button_text">Line 1\nLine 2</string>
在Java代码中引用该字符串资源:
Button myButton = findViewById(R.id.myButton);
myButton.setText(getString(R.string.button_text));
无论使用哪种方式,都可以在Android按钮的字符串文本中添加换行符"\n"来实现换行效果。
领取专属 10元无门槛券
手把手带您无忧上云