gpt4 book ai didi

java - 如何在警告对话框中设置颜色或突出显示 PositiveButton 和 NegativeButton 并自定义

转载 作者:行者123 更新时间:2023-11-30 08:44:41 25 4
gpt4 key购买 nike

我正在警报对话框正按钮中搜索设置颜色。但我没有得到任何解决方案,所以请为我推荐任何一个用于警告对话框的好的解决方案。

我的代码在这里

delete.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
alertDialogBuilder.setTitle("Delete ");
alertDialogBuilder
.setMessage("Are you sure, you want to delete ")
.setCancelable(false)
.setPositiveButton("Yes",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id) {

datab=mdb.getWritableDatabase();
datab.execSQL("DELETE FROM demo WHERE student_id='"+getid+"'");
Toast.makeText(getApplicationContext(), "Successfully deleted", 10).show();
Intent i=new Intent(StudentInfo.this,MainActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(i); }
})
.setNegativeButton("No",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id) {
dialog.cancel();
}
});
AlertDialog alertDialog = alertDialogBuilder.create();
alertDialog.show();
}
});

我想在警告对话框中为 Yes Button 设置红色。

最佳答案

就这么简单!在您的 Java 类中的任何位置创建类似这样的对话方法。

public void openDialog() {
final Dialog dialog = new Dialog(context); // context, this etc.
dialog.setContentView(R.layout.dialog_demo);
dialog.setTitle(R.string.dialog_title);
dialog.show();
}

现在创建布局 XML dialog_demo.xml 并创建您的 UI/设计。这是我为演示目的创建的示例。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/dialog_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="@string/dialog_text"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_below="@id/dialog_info">

<Button
android:id="@+id/dialog_cancel"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.50"
android:background="@color/dialog_cancel_bgcolor"
android:text="Cancel"/>

<Button
android:id="@+id/dialog_ok"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.50"
android:background="@color/dialog_ok_bgcolor"
android:text="Agree"/>
</LinearLayout>
</RelativeLayout>

现在你可以从任何你喜欢的地方调用 openDialog() :) 这是上面代码的截图 enter image description here
请注意,使用 strings.xml 和 colors.xml 中的文本和颜色。你可以定义你自己的。希望这会有所帮助。谢谢!

否则你可以使用这个对我有用的代码

    public void createDialog() {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Do you want to exit from app");
builder.setCancelable(false);
builder.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});

builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(MainActivity.this, "You exit from app",
Toast.LENGTH_LONG).show();

}
});

AlertDialog alert = builder.create();
alert.show();
Button nbutton = alert.getButton(DialogInterface.BUTTON_NEGATIVE);
nbutton.setBackgroundColor(Color.MAGENTA);
Button pbutton = alert.getButton(DialogInterface.BUTTON_POSITIVE);
pbutton.setBackgroundColor(Color.YELLOW);
}

关于java - 如何在警告对话框中设置颜色或突出显示 PositiveButton 和 NegativeButton 并自定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33687509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com