0

我试图做的是一个读取 QR-CODE(称为图像)的应用程序,并且在读取之后,显示一个对话框,其中包含与 QR-CODE 相关的图像和数据库获取的描述。

关于如何做到这一点的任何建议?

我在 Internet 上可以找到的只是如何使用自定义布局创建 Dialog。而已。

4

3 回答 3

2

我假设您需要在自定义对话框中显示图像

定义 dialog.xml

<?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="match_parent"
android:orientation="vertical" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />

</RelativeLayout>

在按钮上的活动中单击显示一个对话框

 Button b= (Button) findViewById(R.id.button1);
    b.setOnClickListener(new OnClickListener()
    {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            showpopup();        
        }

    });

   public void showpopup()
   {
   Dialog d = new Dialog(MainActivity.this);
   d.setContentView( R.layout.dialog);
   d.setTitle("my title");
   ImageView iv = (ImageView) d.findViewById(R.id.imageView1);
   iv.setImageResource(R.drawable.afor); 
   // set your image here. I have used a resource from the drawable folder
   d.show();
   }

在此处输入图像描述

于 2013-05-09T11:40:18.500 回答
0

您可以使用setContentView()n 只需将 ImageView 作为参数传递给它。

于 2013-05-09T11:28:03.480 回答
0

对于自定义对话框,您只需创建一个布局并在对话框中设置该布局。

例如

dialog.setContentView(R.layout.customdialog);

请参阅此示例,单击此处。

于 2013-05-09T11:38:02.077 回答