Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的应用程序中放置了多行EditText。问题是,如果用户按下回车键,则EditText经常与我的应用程序中的图标发生冲突。我想避免这种情况。
EditText
我想知道如何做到这一点,以便用户只能按 Enter 5 次而不能再按一次?
要限制 EditText 的高度,可以使用 maxLines 属性
<EditText ... android:maxLines="5" ... />