我有一个大盒子。我希望框中的提示如下所示(不打算使用语法突出显示):
Hint about the first line
Hint about the second line
Hint about the third line
我尝试在strings.xml中对
EditText
使用android:hint="@string/hints"
,但提示仍在一行。<string name="hints">
Hint about the first line
Hint about the second line
Hint about the third line
</string>
如何在
EditText
中获取多行提示? 最佳答案
通过显式指定新行,可以在字符串中包含新行:
<string name="hint">Manny, Moe and Jack\nThey know what I\'m after.</string>
XML中的换行符被视为空格。
关于android - 带有多行提示的EditText,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4411711/