Questions tagged «alert»

警报通常是引起人们注意的通知消息。

14
如何更改AlertDialog的主题
我想知道是否有人可以帮助我。我正在尝试创建一个自定义AlertDialog。为了做到这一点,我在styles.xml中添加了以下代码行 <resources> <style name="CustomAlertDialog" parent="android:Theme.Dialog.Alert"> <item name="android:windowBackground">@drawable/color_panel_background</item> </style> </resources> color_panel_background.9.png位于可绘制文件夹中。Android SDK res文件夹中也提供此功能。 以下是主要活动。 package com.customdialog; import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.content.DialogInterface; import android.os.Bundle; public class CustomDialog extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); this.setTheme(R.style.CustomAlertDialog); AlertDialog.Builder …
242 android  dialog  themes  alert 

11
如何编辑JavaScript警报框标题?
我正在C#.NET页面中使用以下代码生成JavaScript警报: Response.Write("<script language=JavaScript> alert('Hi select a valid date'); </script>"); 它显示一个警告框,标题为“来自网页的消息”。 可以修改标题吗?
168 javascript  alert 

9
引导警报自动关闭
我需要在单击“添加到愿望清单”按钮时拨打警报,并且应该在2秒钟内消失警报。这是我尝试过的方法,但是警报一出现便立即消失。不知道错误在哪里。有人可以帮我吗? JS脚本 $(document).ready (function(){ $("#success-alert").hide(); $("#myWish").click(function showAlert() { $("#success-alert").alert(); window.setTimeout(function () { $("#success-alert").alert('close'); }, 2000); }); }); HTML代码: <div class="product-options"> <a id="myWish" href="" class="btn btn-mini">Add to Wishlist </a> <a href="#" class="btn btn-mini"> Purchase </a> </div> 警报框: <div class="alert alert-success" id="success-alert"> <button type="button" class="close" data-dismiss="alert">x</button> <strong>Success!</strong> Product have added to your …



5
带有“确定”和“取消”的快速警报视图:点击了哪个按钮?
我有一个用Swift编写的Xcode警报视图,我想确定用户选择了哪个按钮(这是一个确认对话框),该按钮什么也不做或执行某些操作。 目前我有: @IBAction func pushedRefresh(sender: AnyObject) { var refreshAlert = UIAlertView() refreshAlert.title = "Refresh?" refreshAlert.message = "All data will be lost." refreshAlert.addButtonWithTitle("Cancel") refreshAlert.addButtonWithTitle("OK") refreshAlert.show() } 我可能使用了错误的按钮,请对我进行纠正,因为这对我来说是全新的。

14
Twitter Bootstrap警报消息关闭并再次打开
我的警报消息有问题。它正常显示,当用户按下x(关闭)时,我可以将其关闭,但是当用户尝试再次显示它(例如,单击按钮事件)时,则不会显示它。(此外,如果我将此警报消息打印到控制台,则等于[]。)我的代码在这里: <div class="alert" style="display: none"> <a class="close" data-dismiss="alert">×</a> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> 事件: $(".alert").show(); PS!仅在发生某些事件(例如,单击按钮)后才需要显示警报消息。还是我做错了什么?

6
动画自定义对话框
我正在尝试显示自定义对话框,就像它从文本视图中滑落一样。这可能吗?我似乎无法将任何动画应用于对话框类。我已经在构造函数中尝试过这一行,但是没有效果: this.getWindow()。setWindowAnimations(R.anim.paranimation); 我什至不确定动画是否正确,但是一旦看到动画效果,便可以对其进行调整。为了完整起见,我将在下面列出。我不是在寻求有关实际动画的帮助,而只是在对话框的应用程序上寻求帮助。 paranimation.xml: <?xml version="1.0" encoding="utf-8"?> <translate xmlns:android="http://schemas.android.com/apk/res/android" android:fromXDelta="-200%" android:toXDelta="0%" android:fromYDelta="200%" android:toYDelta="0%" android:duration="3000" android:zAdjustment="top"> </translate>

10
如何使用Twitter Bootstrap自动关闭警报
我正在使用twitter的bootstrap CSS框架(太棒了)。对于某些给用户的消息,我正在使用警报Javascript JS和CSS来显示它们。 对于那些感兴趣的人,可以在这里找到:http : //getbootstrap.com/javascript/#alerts 我的问题是这个;在向用户显示警报后,我希望它在一段时间后消失。根据twitter的文档和我浏览过的代码来看,它似乎不存在: 我的第一个问题是要求确认是否确实没有引入Bootstrap中 其次,如何实现这种行为?


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.