在横向模式下按 Enter 不会将光标移至新行
在我的 Android 应用程序中处于横向模式时,按 Enter 不会将光标带到新行,它只是看起来像一个空格,但当它切换回纵向模式时,新行会正确显示。因此,尽管它运行正常,但我希望用户能够在横向模式下看到不同的文本行。我可以得到任何建议吗?也许这是它应该做的事情,但对我来说这似乎不对。谢谢!
我的这个 EditText 的 XML:
<EditText
android:id="@+id/ingredientsText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minLines="5"
android:gravity="top"
android:scrollbars="vertical"
android:textSize="20sp"/>
While in landscape orientation in my Android app, pressing enter doesn't bring the cursor to a new line, it simply looks like a space, but when it's switched back to portrait mode, the new line displays correctly. So although it's acting correctly, I want the user to be able to see the different lines of text while in Landscape mode. Can I get any advice? Maybe this is something it's supposed to do, but that doesn't seem right to me. Thanks!
My XML for this EditText:
<EditText
android:id="@+id/ingredientsText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minLines="5"
android:gravity="top"
android:scrollbars="vertical"
android:textSize="20sp"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的视图似乎与景观中的其他视图重叠
It seems your view is overlapping with other view in landscape