Tag: 对话框

如何更改Android 5中的默认对话框button文本颜色

我的应用程序中有很多提醒对话框。 这是一个默认的布局,但我正在向对话框添加正面和负面的button。 所以button得到Android 5(绿色)的默认文本颜色。 我试图改变它没有成功。 任何想法如何改变文字颜色? 我的自定义对话框 public class MyCustomDialog extends AlertDialog.Builder { public MyCustomDialog(Context context,String title,String message) { super(context); LayoutInflater inflater = (LayoutInflater) context.getSystemService( Context.LAYOUT_INFLATER_SERVICE ); View viewDialog = inflater.inflate(R.layout.dialog_simple, null, false); TextView titleTextView = (TextView)viewDialog.findViewById(R.id.title); titleTextView.setText(title); TextView messageTextView = (TextView)viewDialog.findViewById(R.id.message); messageTextView.setText(message); this.setCancelable(false); this.setView(viewDialog); } } 创build对话框: MyCustomDialog builder = new MyCustomDialog(getActivity(), "Try Again", […]

jQuery UI对话框button焦点

当一个jQuery UI对话框打开,似乎select其中一个button,并突出显示或设置焦点等…我怎样才能停止这种行为,以便没有任何button突出显示时,对话框打开? 编辑 我在没有从button中删除焦点的对话框选项中尝试了以下内容 … open:function(event, ui) { $("myunimportantdiv").focus(); }, … 注意 作为一个临时的解决方法,我修改了用于ui-state-focus的css,但是这不是理想的…

Android对话框,当按下button时保持对话框打开

我想保持我的对话框打开,当我按下button。 目前正在closures。 AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setMessage("Are you sure you want to exit?") .setCancelable(false) .setPositiveButton("Yes", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { MyActivity.this.finish(); } }) .setNegativeButton("No", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dialog.cancel(); } }); AlertDialog alert = builder.create();

Android默认locking屏幕上的活动

如何显示Activity或Dialog在locking屏幕上可见? 我已经尝试在Activity.onCreate()方法中通过设置各种窗口types来显示我的locking活动: TYPE_PRIORITY_PHONE TYPE_SYSTEM_ALERT TYPE_KEYGUARD 和其他一起使用SYSTEM_ALERT_WINDOW和INTERNAL_SYSTEM_WINDOW权限。 我解锁设备后,我的活动是可见的。 更新: 我其实已经设法显示我自己的活动,而不是默认locking屏幕。 除非您使用HOMEbutton,否则它工作正常。

jQueryUI模式对话框不显示closuresbutton(x)

我在我的ASP .NET MVC 3应用程序中使用jQuery模式对话框。 它工作正常,除了没有closuresbutton显示在右上angular。 我怎样才能添加这个? $("#dialog-modal").dialog({ modal: true, autoOpen: false, buttons: { Ok: function () { $(this).dialog("close"); } } });

在代码和资源中设置TextView字体大小时不一致

官方文件似乎没有回答这个问题,或者我无法弄清楚。 元素(永远AlertDialog ,它也发生在任何TextView上): TextView tv = (TextView) dialog.findViewById(android.R.id.message); 不一致性。 案例A: tv.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14); // or tv.setTextSize(14); does the same 案例B: tv.setTextSize(getResources().getDimension(R.dimen.text_size_small)); // TypedValue makes no difference either. 其中values/dimens.xml具有它: <dimen name="text_size_small">14sp</dimen> 结果:字体大小不一样,从资源检索时显得大得多。 我可能错过了一些东西,那么我的错误是什么,最重要的是:为什么? – 更新到第一个答案 – 固定的数字只是一个例子,因为没有人会在代码中硬编码固定的字体大小。 所以让我重新说一下这个问题: 为什么如果我从代码获取资源,文本大小比从XML布局获取资源时大? 此外,问题仍然是一样的:我如何检索代码中的14sp单元,并保持它与布局XML中设置的14sp单元一致? 我没有接受答案,因为它没有告诉我如何从代码中的资源使用SP单位的文本大小。 在这个布局上,即使尺寸相同,字体大小也是不同的: <TextView android:id="@+id/my_text" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/TextBody" /> styles.xml: <style name="TextBody"> <item name="android:textSize">@dimen/text_size_small</item> <item name="android:lineSpacingMultiplier">1.1</item> <item name="android:textColor">@color/body_text_1</item> […]

WPF:创build一个对话框/提示

我需要创build一个对话框/提示包括用户input的文本框。 我的问题是,确认对话框后如何获取文本? 通常我会为此做一个类,将文本保存在一个属性中。 不过我想用XAML来devise对话框。 所以我会不知何故必须扩展XAML代码以将TextBox的内容保存在一个属性中 – 但我想这对于纯XAML来说是不可能的。 什么是最好的方法来实现我想要做的事情? 如何构build一个可以从XAML定义的对话框,但仍然可以返回input? 感谢任何提示!

为Android 5.0更改Datepicker对话框颜色

是否有可能更改为Android 5.0的datepicker(也是timepicker)颜色scheme? 我试着设置口音的颜色,但是这不起作用(无论是与无android: : <!– colorPrimary is used for the default action bar background –> <item name="colorPrimary">@color/purple</item> <!– colorPrimaryDark is used for the status bar –> <item name="colorPrimaryDark">@color/purple_tint</item> <!– colorAccent is used as the default value for colorControlActivated which is used to tint widgets –> <item name="colorAccent">@color/purple_tint</item> 从原来的: 像这样的东西:

Android:创build一个具有多个选项的popup窗口

我一直在四处搜寻试图找出如何创build一个popup或有4个选项可供select的对话框。 我在Android开发人员网站上看到这个图片: 有谁知道如何编码右边的东西? 我不需要任何图标旁边的文字,我只需要能够从4个选项中select。

我怎样才能定位我的jQuery对话框中心?

我已经尝试了下面的代码,但它只将对话框左上angular的位置放在中心,这使得元素被alignment到正确的位置。 我怎样才能将对话框中心对象的元素宽度计算在中心线上,这样中心线就会将对话框切成50%50%的一半? $('.selector').dialog({ position: 'center' }); http://docs.jquery.com/UI/Dialog#option-position