我不知道如何将图像放入AlertDialog。
我有这段代码,但我认为这是不可能的。
AlertDialog.Builder alert = new AlertDialog.Builder(MessageDemo.this);
ImageView imageView = (ImageView) findViewById(R.id.imageView1);
imageView.setImageResource(R.drawable.cw);
alert.setView(imageView);
alert.setNeutralButton("Here!", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dlg, int sumthin) {
}
});
alert.show();
答案 0 :(得分:62)
创建一个sample.xml
并在该XML中添加ImageView
。
<强> sample.xml中强>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/dialog_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</LinearLayout>
Java代码:
AlertDialog.Builder alertadd = new AlertDialog.Builder(MessageDemo.this);
LayoutInflater factory = LayoutInflater.from(MessageDemo.this);
final View view = factory.inflate(R.layout.sample, null);
alertadd.setView(view);
alertadd.setNeutralButton("Here!", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dlg, int sumthin) {
}
});
alertadd.show();
答案 1 :(得分:25)
您可以通过以下方式完成此操作。这将显示一个带有消息的alertDialog(如果您不需要该消息,只需删除该行)和图像(以及一个OK按钮):
ImageView image = new ImageView(this);
image.setImageResource(R.drawable.YOUR_IMAGE_ID);
AlertDialog.Builder builder =
new AlertDialog.Builder(this).
setMessage("Message above the image").
setPositiveButton("OK", new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
}).
setView(image);
builder.create().show();
答案 2 :(得分:9)
还有一个选项可以将图像放在警告对话框中,而无需创建xml文件。
AlertDialog.Builder builder=new AlertDialog.Builder(DialogActivity.this);
builder.setCancelable(true);
builder.setIcon(R.drawable.your image name);
builder.setTitle("Incoming Call");
builder.setInverseBackgroundForced(true);
builder.setPositiveButton("Accept",new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
dialog.dismiss();
}
});
builder.setNegativeButton("Reject",new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
dialog.dismiss();
}
});
AlertDialog alert=builder.create();
alert.show();
答案 3 :(得分:2)
对于图片我只是这样做:
public void onClick (View view) {
new AlertDialog.Builder(this).setView(R.layout.your_layout).show();
}
答案 4 :(得分:0)
尝试此方法:
private void dialog() {
AlertDialog.Builder alert = new AlertDialog.Builder(MainMenuActivity.this);
LayoutInflater inflater = this.getLayoutInflater();
View team = inflater.inflate(R.layout.image_layout, null);
alert.setView(team);
alert.show();
}
此外,实现名为image_layout
的布局,并将所需的UI元素放入其中。
答案 5 :(得分:-1)
除了其他答案外,我想补充一点,即您不应被迫使用AlertDialog。例如,在我的情况下,我只想在对话框中显示imageView,而AlertDialog在这种情况下不起作用。以下解决方案对我有用:
LayoutInflater factory = LayoutInflater.from(context);
final View view = factory.inflate(R.layout.myphoto_layout, null);
Dialog dialog = new Dialog(context);
dialog.setContentView(view);
dialog.show();
myphoto_layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<ImageView
android:id="@+id/iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/someImage" />
如果要动态地将图像添加到布局中,可以使用以下代码:
ImageView iv = view.findViewById(R.id.iv); // id of your imageView element
iv.setImageBitmap(itmap);