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