在我的 Android 应用程序中,我有一个警报日志和一个图像视图。现在我要做的是将图像视图或图像视图的图像位图设置为我的警报日志图标。我尝试了这个代码,但它现在可以工作了。
alert.setIcon(R.Id.Image);
有人对这个问题有想法吗?
在我的 Android 应用程序中,我有一个警报日志和一个图像视图。现在我要做的是将图像视图或图像视图的图像位图设置为我的警报日志图标。我尝试了这个代码,但它现在可以工作了。
alert.setIcon(R.Id.Image);
有人对这个问题有想法吗?
只需更换R.Id.Image
toR.drawable.Image
AlertDialog myQuittingDialogBox =new AlertDialog.Builder(this)
//set message, title, and icon
.setTitle("Title")
.setMessage("Message?")
.setIcon(R.drawable.Image)
....
.create();
return myQuittingDialogBox;
}
您可以参考此内容以了解如何创建带有徽标的警报对话: