打开一个新窗口以显示 EditText

发布于 2024-12-11 16:15:56 字数 191 浏览 0 评论 0原文

我的问题与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

小傻瓜 2024-12-18 16:15:56

像这样使用警报对话框

 // Add text to dialog
 text = new EditText(this);
 alertDialog.setView(text);          
 alertDialog.setMessage("Enter Your Name");  
 alertDialog.setButton("OK", new DialogInterface.OnClickListener() {  
 public void onClick(DialogInterface dialog, int which) {
     entered_name = text.getText().toString();                                    
     return;  
    }   
 });  
 alertDialog.setNegativeButton("Cancel",new DialogInterface.OnClickListener() {  
     public void onClick(DialogInterface dialog, int which) { 
     return;  
     } 
  }); 
  alertDialog.show();        
}

use the Alert Dialog Like this

 // Add text to dialog
 text = new EditText(this);
 alertDialog.setView(text);          
 alertDialog.setMessage("Enter Your Name");  
 alertDialog.setButton("OK", new DialogInterface.OnClickListener() {  
 public void onClick(DialogInterface dialog, int which) {
     entered_name = text.getText().toString();                                    
     return;  
    }   
 });  
 alertDialog.setNegativeButton("Cancel",new DialogInterface.OnClickListener() {  
     public void onClick(DialogInterface dialog, int which) { 
     return;  
     } 
  }); 
  alertDialog.show();        
}
别忘他 2024-12-18 16:15:56

显然,您应该打开一个新活动(可能是对话框样式的)。

Obviously, you should open a new activity (maybe dialog-styled).

回梦 2024-12-18 16:15:56

您可以在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文