打开一个新窗口以显示 EditText
我的问题与 Android 布局有关。我想打开一个新窗口,在后台显示编辑文本。
例如。单击用户名--->应该打开一个新窗口,其中应该显示一个新的 EditText,下面有一个“确定”和“取消”按钮。
我该怎么办呢。我应该更改 Layout.xml 还是应该在 OnClick() 之后添加一些代码。
感谢您的回复!
My question is pertaining to android layout. I would like to open a new window that will display an edit text in the background.
Eg. Clicking on UserName ---> should open a new window that should show a new EditText with an OK and CANCEL button below.
How would I go about this. Should I be changing my Layout.xml or should I be adding some code after the OnClick().
Thanks for your reply !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样使用警报对话框
use the Alert Dialog Like this
显然,您应该打开一个新活动(可能是对话框样式的)。
Obviously, you should open a new activity (maybe dialog-styled).
您可以在 Android 清单文件中添加一个主题
android:theme="@android:style/Theme.Dialog"
,并为您的 Activity 布局提供您想要显示的内容。You can add a theme as
android:theme="@android:style/Theme.Dialog"
in your android manifest file and give your activity layout what you want to display.