Tag: alertdialog

Android对话主题使图标太轻

我在Eclipse中创build了一个新的应用程序,目标是Jelly Bean。 这是所有自动创build的代码。 清单将应用程序主题设置为AppName: <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > . . . 它转换为AppBaseTheme的值dir中的样式: <resources xmlns:android="http://schemas.android.com/apk/res/android"> <!– Base application theme, dependent on API level. This theme is replaced by AppBaseTheme from res/values-vXX/styles.xml on newer devices. –> <style name="AppBaseTheme" parent="android:Theme.Light"> <!– Theme customizations available in newer API levels can go in res/values-vXX/styles.xml, while customizations related to […]

DialogFragment优于AlertDialog

在开发Android应用程序时,我已经读过build议使用DialogFragment而不是直接使用AlertDialog来显示警报和确认。 例如,在DialogFragment的文档上完成这个工作: http : //developer.android.com/reference/android/app/DialogFragment.html 人们也说他们更喜欢这里: Android的DialogFragment与对话框 我想知道这种方法的优点,因为代码变得更复杂。 谢谢

AlertDialog的setCancelable(false)方法不起作用

我创build了一个AlertDialog工作正常。 它正在消失,如果我按: 1)退出键盘button或 2)使用鼠标后退button 为了使它保持专注于上述条件,我在创build时添加了“.setCancelable(false)”语句。 但是,我仍然看到对话消失。 哪里有问题? 请帮忙。 已添加代码: return new AlertDialog.Builder(getActivity()) .setIcon(R.drawable.alert_dialog_icon) .setTitle(title) .setCancelable(false) .setPositiveButton(R.string.alert_dialog_ok, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton) { ((FragmentAlertDialog)getActivity()).doPositiveClick(); } } ) .setNegativeButton(R.string.alert_dialog_cancel, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton) { ((FragmentAlertDialog)getActivity()).doNegativeClick(); } } ) .create(); Env:XP Professional上的Android 4.0。

当AlertDialog使用视图时,请避免“传递null作为视图根目录”警告

我得到了lint警告,当用null作为parent充气视图时Avoid passing null as the view root ,如下所示: LayoutInflater.from(context).inflate(R.layout.dialog_edit, null); 但是,该视图将被用作AlertDialog的内容,在AlertDialog使用AlertDialog.Builder ,所以我不知道应该作为parent传递什么。 你觉得在这种情况下, parent应该是什么?

Android简单的警报对话框

我需要向用户显示一个小短信,在我的Android应用程序上点击一个button,在IOS上,我只需创build一个AlertView,使用起来很简单,但是由于解决scheme似乎比x10难多了,所以我很苦恼。 我看到我需要使用DialogFragment,但我不明白如何使它工作,可以解释一下吗? 另外,我的解决scheme是正确的,还是有更容易向用户显示简单的文本消息?

如何使用Twitter Bootstrap自动closures警报

我使用twitter的引导CSS框架(这是太棒了)。 对于一些给用户的消息,我使用警告JavaScript JS和CSS显示它们。 对于那些感兴趣的,可以在这里find: http : //getbootstrap.com/javascript/#alerts 我的问题是这个; 在向用户显示警告之后,我希望在一段时间之后才会离开。 基于Twitter的文档和我通过它看的代码看起来像这不是在: 我的第一个问题是一个请求确认,这确实不被引入Bootstrap 其次,我怎么能做到这一点?

chrome取消“阻止此页面创build其他对话框”的操作

我有时会发现我需要重新启用debugging警报。 当然,我可以closures标签并重新加载,但有没有更好的方法?

Android AlertDialog单button

我想有一个AlertDialog生成器,只有一个button,说OK或完成,而不是默认的是和不。 这可以用标准的AlertDialog来完成,还是需要使用别的东西?

如何从appCompat 22.1及更高版本使用和设置新的AlertDialog

我想从默认的android AlertDialog迁移到appCompat-22.1中包含的新的到目前为止,我明白你只需要导入android.support.v7.app.AlertDialog包来使用它。 但是我怎么样呢? 例如更改正面/负面的button颜色,标题颜色,消息颜色和背景颜色?

AlertDialog从BroadcastReceiver内? 可以这样做吗?

AlertDialog从BroadcastReceiver内? 可以这样做吗? 我正在开发一个应用程序,如果我收到短信,就会popup一个对话框。 我正在尝试在BroadcaseReceiver中对其进行编码。 但我不能使用这行代码AlertDialog.Builder builder = new AlertDialog.Builder(this); 。 有人可以帮助我一个提示! public class SMSPopUpReceiver extends BroadcastReceiver { private static final String LOG_TAG = "SMSReceiver"; public static final int NOTIFICATION_ID_RECEIVED = 0x1221; static final String ACTION = "android.provider.Telephony.SMS_RECEIVED"; public void onReceive(Context context, Intent intent) { Log.i(LOG_TAG, "onReceive"); if (intent.getAction().equals(SMSPopUpReceiver.ACTION)) { StringBuilder sb = new StringBuilder(); Bundle […]