Tag: 对话框

如何添加第三个button到Android Alert Dialog?

该API说,警报对话框可以有一个,两个或三个button,但SDK只允许一个正面和负面的button。 那我怎么能添加第三个button?

showDialog弃用。 有什么select?

还有别的东西应该叫什么? showDialog(TIME_DIALOG_ID); 在本教程中,但在Eclipse中已经弃用了。

Android对话框:删除标题栏

我有一个奇怪的行为,我不能确定的来源。 我有我的经典应用程序 requestWindowFeature(Window.FEATURE_NO_TITLE); 删除标题/状态栏。 然后我创build一个对话框让用户input信息(名称等) 用一个物理键盘,没问题,但是当我使用虚拟键盘时,我有一个奇怪的行为: 每当我按下虚拟键盘上的按键时,标题/状态栏会重新出现,推动所有的键盘布局,然后再次消失(就像我启动应用程序时的animation一样) 这里是一些代码: dialog = new Dialog(context); dialog.setContentView(R.layout.logindialog); dialog.setTitle("Login:"); WindowManager.LayoutParams a = dialog.getWindow().getAttributes(); // dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); a.dimAmount = 0; dialog.getWindow().setAttributes(a); dialog.setCancelable(true); dialog.getWindow().setLayout(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT); 接着 dialog.show(); 我试过了 dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 但它崩溃了我的应用程序。 这里是xml <TextView android:id="@+id/LoginText" android:gravity="fill" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Login:"> </TextView> <EditText android:id="@+id/LoginEdit" android:layout_height="wrap_content" android:singleLine="true" android:text="jason" android:layout_width="200sp"/> <TextView android:id="@+id/PasswordText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Password:"> </TextView> <EditText android:id="@+id/PasswordEdit" android:layout_height="wrap_content" android:singleLine="true" […]

如何使WPF中的模式对话框?

我在WPF中编写我的第一个应用程序,并希望用户在模态对话窗口上input一些数据。 显然,这在WPF中并不简单,因为父窗口保持完全启用状态,并且创build新子窗口的方法不会停止并等待子窗口调用Close()。 相反,它只是继续前进。 这不是我想要的。 我怎样才能让子窗口打开,并有父窗口等待子窗口closures之前父窗口继续执行?

如何在对话框中创build一个编辑文本框

我正在尝试在input密码的对话框中编辑一个edittext框。 当我在做我无法做的事情。 我是一个初学者。 请帮助我。 public class MainActivity extends Activity { Button create, show, setting; //String pass="admin";String password; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); create = (Button)findViewById(R.id.amcreate); setting = (Button)findViewById(R.id.amsetting); show = (Button)findViewById(R.id.amshow); //input = (EditText)findViewById(R.id.this); setting.setVisibility(View.INVISIBLE); create.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { Intent myIntent1 = new Intent(view.getContext(), Create.class); startActivityForResult(myIntent1, 0); } […]

阻止Android活动对话框在外部closures时closures

我有一个使用Theme.Dialog风格的活动,这是一个浮动的窗口在另一个活动。 但是,当我在对话框窗口(在后台活动上)之外单击时,对话框closures。 我怎样才能阻止这种行为?

如何在JQuery UI对话框中实现“确认”对话框?

我尝试使用JQuery UI对话框来replace丑陋的javascript:alert()框。 在我的场景中,我有一个项目列表,并在他们每个人旁边,我会有一个“删除”button为他们每个人。 psuedo的html设置将如下所示: <ul> <li>ITEM <a href="url/to/remove"> <span>$itemId</span> <li>ITEM <a href="url/to/remove"><span>$itemId</span> <li>ITEM <a href="url/to/remove"><span>$itemId</span> </ul> <div id="confirmDialog">Are you sure?</div> 在JQ部分,在文档准备好的时候,我会首先将div设置为必要的button的modal dialog,并将这些“a”设置为在开始删除之前进行确认,如: $("ul li a").click(function() { // Show the dialog return false; // to prevent the browser actually following the links! } 好的,这是问题所在。 在初始化期间,对话框将不知道谁(物品)会将其点燃,还有物品ID(!)。 我如何设置这些确认button的行为,如果用户仍然select是,它将按照链接将其删除?

如何使用OpenFileDialog来select一个文件夹?

如何使用OpenFileDialog来select文件夹? 我打算使用下面的项目: https : //github.com/scottwis/OpenFileOrFolderDialog 但是,我面临一个问题。 它使用GetOpenFileName函数和OPENFILENAME结构。 而OPENFILENAME有名为templateID的成员。 这是对话框模板的标识符。 而且该项目也包含res1.rc文件和模板对话框init。 但我不知道如何将此文件附加到我的C#项目。 有没有更好的方法来使用OpenFileDialog来select文件夹?

从DialogFragment接收结果

我正在使用DialogFragments的许多事情:从列表中select项目,input文本。 什么是最好的方式返回一个值(即从列表中的string或项目)回到调用活动/片段? 目前,我正在使调用活动实现DismissListener并给DialogFragment一个参考活动。 然后Dialog调用活动中的OnDimiss方法,活动从DialogFragment对象中获取结果。 非常混乱,而且在DialogFragment失去对活动的引用时,它不能在configuration更改(方向更改)上工作。 谢谢你的帮助。

打开目录对话框

我希望用户select一个目录,然后我将生成一个文件将被保存。 我知道,在WPF中,我应该使用Win32的OpenFileDialog ,但不幸的是,对话框需要select文件 – 如果我只是单击“确定”而没有select文件,它将保持打开状态。 我可以通过让用户select一个文件来“破解”这个function,然后去掉这个path来找出它属于哪个目录,但是这样做不是直觉。 有没有人见过这样做?