- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如何更改警告框标题栏的背景颜色?
AlertDialog.Builder alert=new AlertDialog.Builder(getParent());
alert.setTitle("sample");
alert.show();
最佳答案
最简单的方法是通过创建一个扩展对话框并实现将样式作为参数的构造函数的类来子类化对话框。然后为其制作您自己的自定义布局。
显示对话框的代码:
private void showDialog()
{
Custom_Dialog dialog = new Custom_Dialog(this, R.style.myCoolDialog);
dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle("Custom Dialog");
TextView text = (TextView) dialog.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) dialog.findViewById(R.id.image);
image.setImageResource(R.drawable.icon);
dialog.show();
}
子类的代码:
package com.stackoverflow;
import android.app.Dialog;
import android.content.Context;
public class Custom_Dialog extends Dialog {
protected Custom_Dialog(Context context, int theme) {
super(context, theme);
// TODO Auto-generated constructor stub
}
}
样式:myCoolDialog.xml
<resources>
<style name="myCoolDialog" parent="android:Theme.Dialog">
<item name="android:windowBackground">@drawable/blue</item>
<item name="android:colorForeground">#f0f0</item>
</style>
</resources>
最后是layout:custom_dialog.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
>
<ImageView android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="10dp"
/>
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textColor="#FFF"
/>
</LinearLayout>
关于android - 设置 AlertBox 标题栏背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5933002/
我把代码写在ascx 脚本: $(function() { $('#ImageButton1').click(function() { jAlert('Pl
friend 们,我在我的应用程序中使用了一个警告框。 public static void Alertbox(String title, String mymessage,Context conte
如何更改警告框标题栏的背景颜色? AlertDialog.Builder alert=new AlertDialog.Builder(getParent()); alert.setTitle("sam
如果单击显示列表中第一个值的按钮,我会尝试收到警报。我基于此使用以下代码 threat 。在这种威胁中,他们使用的是表格而不是列表。但我认为那不是问题……我认为现在是问题了。我使用的代码是这样的。(这
public class IdAsync extends AsyncTask { AlertDialog alertDialog = new AlertDialog.Builder(MainClas
是否可以在 JavaScript 警告框中显示图像。如果是,请编码。 最佳答案 不,JavaScript 中的标准 alert() 由浏览器处理,代码中没有任何可用的自定义。但是,您可以使用类似 jQ
对于我的项目,我使用 Storyboard和 arc,现在我想实现一个 AlertBox,我可以在其中使用用户名和密码注册我。 首先我检查我是否已经注册了一个查询(已经实现)。如果我已经注册,则不应出
我在 Xamarin Platform Visual Studio 上使用 C# 构建了一个 Android 应用。我正在尝试构建一个允许用户直接从应用程序启用 GPS 的 AlertDialog。或
我正在尝试在 HTML 表中显示来自数据库的数据,我想在警告框中显示此 html 表,现在它在警告框内显示数据但不像 html 表那样显示,现在我的警告框显示如下: 我想以 HTML 表格格式显示它。
我需要在 alertbox 之后关闭窗口,我使用了 Stack Question 中要求的代码但是我的警告框在 php 代码中,我得到了警告框,但是一旦我关闭它,窗口就没有关闭,我是 php 的新手。
这两者之间有区别吗,哪一个可能更好或更快,或者两者之间有任何优势: UIAlertView * alertBox = [[UIAlertView alloc] initWithTitle:@"Titl
我想在我的内容页面中使用 AlertBox。我正在以这种方式使用 AlertBox。 var alertButton1 = new Button { Text = "SimpleWay" }; ale
我的 JS 警报框出现问题,它应该可以正常工作,但突然弹出了。 selenium.common.exceptions.WebDriverException: Message: [JavaScript
我想为用户输入显示一个 alertBox。所以我在 alertBox 中添加了 EditText View 。我的 alertBox 代码是: final EditText input = new E
我是一名优秀的程序员,十分优秀!