Tag: 对话框

有可能创build对话框内的列表视图?

我创build了一个自定义对话框类 public class NewPost extends Dialog { // functionality } 现在我的要求是在里面创buildlistview。 我知道我们可以在里面创build文本框,button,下拉列表。 但为了创build列表视图,我们应该从listActivity类inheritance我们的类 你的build议是可能或不可以,如果是的话,如何实现这个使用任何接口或什么?

Android号码选取器对话框

有没有人有任何对话,将允许用户select一定范围内的号码? 这似乎是一个相当普遍的需求,但我找不到一个共同的对话框,我宁愿不必花时间创build自己的。 任何帮助?

jquery ui对话框:在初始化之前,不能在对话框中调用方法

我有一个应用程序jquery 1.5与对话框工作正常。 虽然我有很多.live处理程序,我把它改成.on。 为此,我必须更新jquery(现在1.8.3和jquerui 1.9.1)。 现在,我得到了: Error: cannot call methods on dialog prior to initialization; attempted to call method 'close' Error: cannot call methods on dialog prior to initialization; attempted to call method 'close' 以下是代码: 使用Javascript var opt = { autoOpen: false, modal: true, width: 550, height:650, title: 'Details' }; $(document).ready(function() { $("#divDialog").dialog(opt); $("#divDialog").dialog("open"); … […]

jQuery:通过Ajax加载modal dialog内容

目前我的modal dialog是这样的 <html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/humanity/jquery-ui.css" type="text/css" /> </head> <body> <div id="dialog" title="Title Box"> <p>Stuff here</p> </div> <script type="text/javascript"> jQuery( function() { jQuery("#dialog") .dialog( { bgiframe: true, autoOpen: false, height: 100, modal: true } ); jQuery('body') .bind( 'click', function(e){ if( jQuery('#dialog').dialog('isOpen') && !jQuery(e.target).is('.ui-dialog, a') && !jQuery(e.target).closest('.ui-dialog').length ){ jQuery('#dialog').dialog('close'); […]

Python中用简单的对话框select一个文件

我想在Python控制台应用程序中获取文件path作为input。 目前我只能要求在控制台中input完整path。 有没有办法触发一个简单的用户界面,用户可以select文件,而不是input完整的path?

如何取消一个类似活动的对话窗口在窗口外面?

我有一个Dialog主题的活动,当有人在屏幕上的任何地方触摸屏幕时,我想closures(完成)这个活动。 我该怎么做?

如何设置对话框以全屏显示?

我有一个GridView显示大量的图像,当我点击任何图像时,它将在全屏幕对话框中显示完整的图像 请告诉我如何做到这一点 谢谢。

我如何获得一个对话框样式的活动窗口来填充屏幕?

我正在使用对话框主题设置的活动,我希望它是全屏。 我尝试了各种各样的东西,甚至通过WindowManager将窗口手动扩展为全宽和高度,但没有任何工作。 显然,一个对话窗口(或对话框主题的活动)只会根据其内容进行扩展,但即使这样也并不总是有效。 例如,我展示了一个宽度和高度设置为FILL_PARENT的进度条圆(其布局容器也一样),但是对话框仍然围绕着更小的进度条而不是填充屏幕。 必须有一种方法来显示一个对话窗口内的小东西,但它扩大到全屏幕的大小,而不是其内容的大小?

java / swing中closures窗口的正确动作是什么?

我只是在我的CustomUIPanel类中写了这个testing代码: public static void main(String[] args) { final JDialog dialog = CustomUIPanel.createDialog(null, CustomUIPanel.selectFile()); dialog.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { System.exit(0); } }); } 它工作正常,如果CustomUIPanel.main()是程序的入口点,但它让我想知道:如果另一个类调用CustomUIPanel.main()testing? 然后我对System.exit(0)调用是不正确的。 如果没有顶层窗口,是否有办法告诉Swing事件派发线程自动退出? 如果没有,如果closures所有顶层窗口时程序退出的目标是JDialog / JFrame在closures时执行什么操作是正确的?

Android DatePicker仅更改为“月”和“年”

我有一个DatePickerDialog,我只想查看月和年。 我怎样才能改变这个代码? public void chooseDate2(View v) { new DatePickerDialog( act.this, d1, dateAndTime1.get(Calendar.YEAR) + 2, dateAndTime1.get(Calendar.MONTH), dateAndTime1.get(Calendar.DAY_OF_MONTH) ).show(); } private void updateLabel2() { scadenza.setText(fmtDateAndTime.format(dateAndTime1.getTime())); } DatePickerDialog.OnDateSetListener d1=new DatePickerDialog.OnDateSetListener() { public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) { dateAndTime1.set(Calendar.YEAR, year); dateAndTime1.set(Calendar.MONTH, monthOfYear); dateAndTime1.set(Calendar.DAY_OF_MONTH, dayOfMonth); updateLabel2(); } }; 谢谢